Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/platform/assets/components/UploadModelConfirmation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
<p class="m-0">
{{ $t('assetBrowser.modelAssociatedWithLink') }}
</p>
<p
class="mt-0 bg-modal-card-background text-base-foreground p-3 rounded-lg"
>
{{ metadata?.name || metadata?.filename }}
<p class="mt-0 text-base-foreground rounded-lg">
{{ metadata?.filename || metadata?.name }}
</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/platform/assets/components/UploadModelProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
>
<div class="flex flex-col justify-center items-start gap-1 flex-1">
<p class="text-base-foreground m-0">
{{ metadata?.name || metadata?.filename }}
{{ metadata?.filename || metadata?.name }}
</p>
<p class="text-sm text-muted m-0">
<!-- Going to want to add another translation here to get a nice display name. -->
Expand Down