Remove ino from file tables

This commit is contained in:
Mark Cooper 2021-09-27 07:02:31 -05:00
parent 3e5338ec8e
commit a343a1038c
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@
<template v-for="track in files">
<tr :key="track.path">
<td class="font-book pl-2">
{{ track.filename }}<span class="text-white text-opacity-50 pl-4">({{ track.ino }})</span>
{{ track.filename }}
</td>
<td class="font-mono">
{{ $bytesPretty(track.size) }}

View File

@ -21,7 +21,7 @@
<template v-for="file in files">
<tr :key="file.path">
<td class="font-book pl-2">
{{ file.path }}<span class="text-white text-opacity-50 pl-4">({{ file.ino }})</span>
{{ file.path }}
</td>
<td class="text-xs">
<p>{{ file.filetype }}</p>

View File

@ -27,7 +27,7 @@
<p>{{ track.index }}</p>
</td>
<td class="font-book">
{{ track.filename }}<span class="text-white text-opacity-50 pl-4">({{ track.ino }})</span>
{{ track.filename }}
</td>
<td class="font-mono">
{{ $bytesPretty(track.size) }}