Fix placeholder text of various empty tables and lists

This commit is contained in:
Girish Ramakrishnan
2025-09-25 12:06:43 +02:00
parent fc83306d72
commit edb33e1f2c
5 changed files with 21 additions and 10 deletions

View File

@@ -349,7 +349,7 @@ onMounted(async () =>{
<div v-html="$t('volumes.description')"></div>
<br/>
<TableView :columns="columns" :model="volumes" :busy="busy">
<TableView :columns="columns" :model="volumes" :busy="busy" :placeholder="$t('volumes.emptyPlaceholder')">
<template #target="volume">
{{ (volume.mountType === 'mountpoint' || volume.mountType === 'filesystem') ? volume.hostPath : (volume.mountOptions.host || volume.mountOptions.diskPath || volume.hostPath) + (volume.mountOptions.remoteDir || '') }}
</template>