Don't hide the "new bucket" when updating tasks

This commit is contained in:
kolaente 2020-12-23 21:16:13 +01:00
parent c9aeff20c6
commit ad33458a80
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 6 deletions

View File

@ -205,7 +205,7 @@
</div>
</div>
<div class="bucket new-bucket" v-if="!loading && canWrite">
<div class="bucket new-bucket" v-if="canWrite">
<input
:class="{'is-loading': loading}"
:disabled="loading"
@ -222,12 +222,12 @@
<a
@click="() => showNewBucketInput = true"
class="button noshadow is-transparent is-fullwidth has-text-centered" v-if="!showNewBucketInput">
<span class="icon is-small">
<icon icon="plus"/>
</span>
<span class="icon is-small">
<icon icon="plus"/>
</span>
<span>
Create a new bucket
</span>
Create a new bucket
</span>
</a>
</div>
</div>