From 9e82ba261b7fbba1964d278f3d96093fff8fc9f9 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Fri, 10 Jul 2020 10:50:27 -0500 Subject: [PATCH] fix(columns): avoid a Vue error on initial load --- website/client/src/components/tasks/column.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/src/components/tasks/column.vue b/website/client/src/components/tasks/column.vue index 3af2da3ecb..9a98b5fa31 100644 --- a/website/client/src/components/tasks/column.vue +++ b/website/client/src/components/tasks/column.vue @@ -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;