Fix non-release docker builds #357

Merged
konrad merged 2 commits from branchmispredictor/frontend:bugfix/local-docker-builds into master 2020-12-28 23:28:53 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit aa505a139d - Show all commits

View File

@ -327,6 +327,9 @@ describe('Lists', () => {
cy.get('.kanban .bucket .title')
.contains(buckets[0].title)
.should('not.exist')
cy.get('.kanban .bucket .title')
.contains(buckets[1].title)
.should('exist')
})

View File

@ -157,7 +157,7 @@ export default {
.then(r => {
ctx.commit('removeBucket', bucket)
// We reload all buckets because tasks are being moved from the deleted bucket
ctx.dispatch('loadBucketsForList', bucket.listId)
ctx.dispatch('loadBucketsForList', {listId: bucket.listId})
return Promise.resolve(r)
})
.catch(e => {

View File

@ -31,8 +31,8 @@
:class="{'is-max': bucket.tasks.length >= bucket.limit}"
class="limit"
v-if="bucket.limit > 0">
{{ bucket.tasks.length }}/{{ bucket.limit }}
</span>
{{ bucket.tasks.length }}/{{ bucket.limit }}
</span>
<div
:class="{ 'is-active': bucketOptionsDropDownActive[bucket.id] }"
class="dropdown is-right options"