Skip to content

Commit

Permalink
Merge remote-tracking branch 'zachflower/fix-hide-rewards-help' into …
Browse files Browse the repository at this point in the history
…delta
  • Loading branch information
SabreCat committed Oct 25, 2023
2 parents a34aa41 + 0fdc736 commit d0e6891
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/client/src/components/tasks/column.vue
Original file line number Diff line number Diff line change
Expand Up @@ -697,13 +697,13 @@ export default {
},
setColumnBackgroundVisibility () {
this.$nextTick(() => {
if (!this.$refs.columnBackground || !this.$refs.tasksList) return;
if (!this.$refs.columnBackground) return;
const tasksWrapperEl = this.$refs.tasksWrapper;
const tasksWrapperHeight = tasksWrapperEl.offsetHeight;
const quickAddHeight = this.$refs.quickAdd ? this.$refs.quickAdd.offsetHeight : 0;
const tasksListHeight = this.$refs.tasksList.$el.offsetHeight;
const tasksListHeight = this.$refs.tasksList ? this.$refs.tasksList.$el.offsetHeight : 0;
let combinedTasksHeights = tasksListHeight + quickAddHeight;
Expand Down

0 comments on commit d0e6891

Please sign in to comment.