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>
|
</label>
|
||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
v-if="stash.deletable"
|
v-if="isMine && stash.deletable"
|
||||||
icon="bin"
|
icon="bin"
|
||||||
class="stash-remove"
|
class="stash-remove"
|
||||||
@click.native="showRemoveStash = true"
|
@click.native="showRemoveStash = true"
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
v-if="stash.deletable"
|
v-if="isMe && stash.deletable"
|
||||||
icon="bin"
|
icon="bin"
|
||||||
class="stash-remove"
|
class="stash-remove"
|
||||||
@click.native="showRemoveStash = true"
|
@click.native="showRemoveStash = true"
|
||||||
|
|
Loading…
Reference in New Issue