Albums: Hide empty clipboard #15
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
parent
1e4d272ee7
commit
e87759b139
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div>
|
||||
<v-container fluid class="pa-0">
|
||||
<v-container fluid class="pa-0" v-if="selection.length > 0">
|
||||
<v-speed-dial
|
||||
fixed
|
||||
bottom
|
||||
|
@ -25,7 +25,7 @@
|
|||
fab
|
||||
dark
|
||||
small
|
||||
title="Toggle private flag"
|
||||
title="Private"
|
||||
color="deep-purple lighten-2"
|
||||
@click.stop="batchPrivate()"
|
||||
:disabled="selection.length === 0"
|
||||
|
@ -37,7 +37,7 @@
|
|||
fab
|
||||
dark
|
||||
small
|
||||
title="Toggle story flag"
|
||||
title="Story"
|
||||
color="cyan accent-4"
|
||||
:disabled="selection.length === 0"
|
||||
@click.stop="batchStory()"
|
||||
|
@ -84,7 +84,7 @@
|
|||
dark
|
||||
small
|
||||
color="delete"
|
||||
title="Delete photos"
|
||||
title="Delete"
|
||||
@click.stop="dialog.delete = true"
|
||||
:disabled="selection.length === 0"
|
||||
v-if="!album"
|
||||
|
|
Loading…
Reference in a new issue