[fix] missed i18n string

This commit is contained in:
Arjan Singh
2025-09-16 20:02:27 -07:00
parent de5bb01063
commit d7a9f59bdd
2 changed files with 3 additions and 2 deletions

View File

@@ -1870,6 +1870,7 @@
"tryAdjustingFilters": "Try adjusting your search or filters",
"loadingModels": "Loading {type}...",
"connectionError": "Please check your connection and try again",
"noModelsInFolder": "No {type} available in this folder"
"noModelsInFolder": "No {type} available in this folder",
"searchAssetsPlaceholder": "Search assets..."
}
}

View File

@@ -22,7 +22,7 @@
<SearchBox
v-model="searchQuery"
size="lg"
placeholder="Search assets..."
:placeholder="$t('assetBrowser.searchAssetsPlaceholder')"
class="max-w-96"
/>
</template>