fix: path should not display when search in user
This commit is contained in:
parent
f3582433f5
commit
e9d9b60abb
1 changed files with 3 additions and 3 deletions
|
|
@ -108,9 +108,9 @@ const folderFormComponent = ref<InstanceType<typeof FolderFormWrapper>>()
|
|||
<span v-if="isSearch">
|
||||
ผลการค้นหา
|
||||
<span class="text-grey text-body2 q-ml-md">{{
|
||||
mode === 'admin' &&
|
||||
currentInfo.path !== '/' &&
|
||||
currentInfo.path.split('/').join(' / ')
|
||||
mode === 'admin' && currentInfo.path !== '/'
|
||||
? currentInfo.path.split('/').join(' / ')
|
||||
: ''
|
||||
}}</span>
|
||||
</span>
|
||||
<q-breadcrumbs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue