mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-03 00:06:46 +01:00
Remove ino from file tables
This commit is contained in:
parent
3e5338ec8e
commit
a343a1038c
@ -23,7 +23,7 @@
|
|||||||
<template v-for="track in files">
|
<template v-for="track in files">
|
||||||
<tr :key="track.path">
|
<tr :key="track.path">
|
||||||
<td class="font-book pl-2">
|
<td class="font-book pl-2">
|
||||||
{{ track.filename }}<span class="text-white text-opacity-50 pl-4">({{ track.ino }})</span>
|
{{ track.filename }}
|
||||||
</td>
|
</td>
|
||||||
<td class="font-mono">
|
<td class="font-mono">
|
||||||
{{ $bytesPretty(track.size) }}
|
{{ $bytesPretty(track.size) }}
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<template v-for="file in files">
|
<template v-for="file in files">
|
||||||
<tr :key="file.path">
|
<tr :key="file.path">
|
||||||
<td class="font-book pl-2">
|
<td class="font-book pl-2">
|
||||||
{{ file.path }}<span class="text-white text-opacity-50 pl-4">({{ file.ino }})</span>
|
{{ file.path }}
|
||||||
</td>
|
</td>
|
||||||
<td class="text-xs">
|
<td class="text-xs">
|
||||||
<p>{{ file.filetype }}</p>
|
<p>{{ file.filetype }}</p>
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
<p>{{ track.index }}</p>
|
<p>{{ track.index }}</p>
|
||||||
</td>
|
</td>
|
||||||
<td class="font-book">
|
<td class="font-book">
|
||||||
{{ track.filename }}<span class="text-white text-opacity-50 pl-4">({{ track.ino }})</span>
|
{{ track.filename }}
|
||||||
</td>
|
</td>
|
||||||
<td class="font-mono">
|
<td class="font-mono">
|
||||||
{{ $bytesPretty(track.size) }}
|
{{ $bytesPretty(track.size) }}
|
||||||
|
Loading…
Reference in New Issue
Block a user