Don't hide the "new bucket" when updating tasks
This commit is contained in:
parent
c9aeff20c6
commit
ad33458a80
1 changed files with 6 additions and 6 deletions
|
@ -205,7 +205,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bucket new-bucket" v-if="!loading && canWrite">
|
<div class="bucket new-bucket" v-if="canWrite">
|
||||||
<input
|
<input
|
||||||
:class="{'is-loading': loading}"
|
:class="{'is-loading': loading}"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
|
@ -222,12 +222,12 @@
|
||||||
<a
|
<a
|
||||||
@click="() => showNewBucketInput = true"
|
@click="() => showNewBucketInput = true"
|
||||||
class="button noshadow is-transparent is-fullwidth has-text-centered" v-if="!showNewBucketInput">
|
class="button noshadow is-transparent is-fullwidth has-text-centered" v-if="!showNewBucketInput">
|
||||||
<span class="icon is-small">
|
<span class="icon is-small">
|
||||||
<icon icon="plus"/>
|
<icon icon="plus"/>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
Create a new bucket
|
Create a new bucket
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue