Hiding remove stash icons from other users.

This commit is contained in:
DebaucheryLibrarian 2021-03-20 23:07:47 +01:00
parent eee47111a6
commit 67f22a6e08
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
</label>
<Icon
v-if="stash.deletable"
v-if="isMine && stash.deletable"
icon="bin"
class="stash-remove"
@click.native="showRemoveStash = true"

View File

@ -32,7 +32,7 @@
</label>
<Icon
v-if="stash.deletable"
v-if="isMe && stash.deletable"
icon="bin"
class="stash-remove"
@click.native="showRemoveStash = true"