Skip to content

Commit

Permalink
NAS-131004: Remove empty Metadata Card (#10672)
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Vasilenko <[email protected]>
  • Loading branch information
bvasilenko and bvasilenko authored Sep 16, 2024
1 parent 3c6a43c commit 478a1cd
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ <h2 class="title">
@if (app()?.notes) {
<ix-app-notes-card [app]="app()"></ix-app-notes-card>
}
<ix-app-metadata-card
[appMetadata]="app().metadata"
[maxHeight]="180"
></ix-app-metadata-card>
@if (app()?.metadata) {
<ix-app-metadata-card
[appMetadata]="app().metadata"
[maxHeight]="180"
></ix-app-metadata-card>
}
</div>
</div>
}

0 comments on commit 478a1cd

Please sign in to comment.