We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f405524 commit 366a447Copy full SHA for 366a447
electron_app/src/components/ImageItem.vue
@@ -18,7 +18,8 @@
18
</div>
19
20
21
- <img @click="open_image_popup( path )" class="gal_img" :src="'file://' + path " style="max-height: 100% ; max-width: 100%;" >
+ <img v-if="path != 'nsfw'" @click="open_image_popup( path )" class="gal_img" :src="'file://' + path " style="max-height: 100% ; max-width: 100%;" >
22
+ <img v-else @click="open_image_popup( path )" class="gal_img" :src="require('@/assets/nsfw.png')" style="max-height: 100% ; max-width: 100%;" >
23
<br>
24
<div v-if="!hide_extra_save_button" @click="save_image(path)" class="l_button">Save Image</div>
25
0 commit comments