forked from DebaucheryLibrarian/traxxx
Hiding remove stash icons from other users.
This commit is contained in:
parent
eee47111a6
commit
67f22a6e08
|
@ -37,7 +37,7 @@
|
|||
</label>
|
||||
|
||||
<Icon
|
||||
v-if="stash.deletable"
|
||||
v-if="isMine && stash.deletable"
|
||||
icon="bin"
|
||||
class="stash-remove"
|
||||
@click.native="showRemoveStash = true"
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
</label>
|
||||
|
||||
<Icon
|
||||
v-if="stash.deletable"
|
||||
v-if="isMe && stash.deletable"
|
||||
icon="bin"
|
||||
class="stash-remove"
|
||||
@click.native="showRemoveStash = true"
|
||||
|
|
Loading…
Reference in New Issue