@christianriedl/media 1.0.93 → 1.0.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -384,7 +384,7 @@
|
|
|
384
384
|
clearName();
|
|
385
385
|
const idx = item.Url.lastIndexOf('.');
|
|
386
386
|
const name = item.Url.substr(0, idx);
|
|
387
|
-
if (!
|
|
387
|
+
if (!item.Name.includes(name)) {
|
|
388
388
|
showName.value = true;
|
|
389
389
|
nameTimer = window.setTimeout(() => { clearName(); }, mediaAppConfig.nameDurationMS);
|
|
390
390
|
}
|
package/src/views/PhotosPage.vue
CHANGED
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
<template v-slot:activator="{ props }">
|
|
220
220
|
<v-list-item v-bind="props" :title="item.info" :value="item.info" density="compact"></v-list-item>
|
|
221
221
|
</template>
|
|
222
|
-
<v-list-item v-for="subItem in item.Folders" :key="subItem.DLNAID" :title="subItem.info" density="compact" @click.stop="showPictures(subItem)">
|
|
222
|
+
<v-list-item v-if="open.includes(item.Name)" v-for="subItem in item.Folders" :key="subItem.DLNAID" :title="subItem.info" density="compact" @click.stop="showPictures(subItem)">
|
|
223
223
|
<template v-slot:append>
|
|
224
224
|
<v-btn color="grey" variant="tonal" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
|
|
225
225
|
<v-btn color="grey" variant="tonal" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
|