diff --git a/navigator-vue/src/components/DirectoryEntry.vue b/navigator-vue/src/components/DirectoryEntry.vue index df6e436..1667c11 100644 --- a/navigator-vue/src/components/DirectoryEntry.vue +++ b/navigator-vue/src/components/DirectoryEntry.vue @@ -5,14 +5,14 @@
- +
{{ entry.name }}
-
+
{{ entry.modeStr }} {{ entry.owner }} {{ entry.group }} - {{ entry.sizeHuman }} + {{ entry.sizeHuman }} {{ entry.ctime?.toLocaleString() ?? '-' }} {{ entry.mtime?.toLocaleString() ?? '-' }} {{ entry.atime?.toLocaleString() ?? '-' }} @@ -60,7 +60,7 @@ :title="`-> ${entry.target?.rawPath ?? '?'}`" >
@@ -108,7 +108,7 @@ export default { } watch(props.entry, () => { - if (props.entry.type === 'directory' || (props.entry.type === 'link' && props.entry.target?.type === 'directory')) { + if (props.entry.type === 'directory' || (props.entry.type === 'symbolic link' && props.entry.target?.type === 'directory')) { icon.value = FolderIcon; directoryLike.value = true; } else {