fix(columns): avoid a Vue error on initial load

This commit is contained in:
Sabe Jones
2020-07-10 10:50:27 -05:00
parent c46b4e55c3
commit 9e82ba261b

View File

@@ -640,7 +640,7 @@ export default {
},
setColumnBackgroundVisibility () {
this.$nextTick(() => {
if (!this.$refs.columnBackground) return;
if (!this.$refs.columnBackground || !this.$refs.tasksList) return;
const tasksWrapperEl = this.$refs.tasksWrapper;