From 774a1d9a96efe7d172ff491fc7fda53c7eafb7f0 Mon Sep 17 00:00:00 2001 From: Alex Figueroa Date: Mon, 30 Jul 2018 06:58:43 -0700 Subject: [PATCH] Fix advanced settings from always starting collapsed (#10561) Previously the user's preference for whether the advanced settings starts opened or collapsed was ignored. Resolves: #10556 --- website/client/components/tasks/taskModal.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/client/components/tasks/taskModal.vue b/website/client/components/tasks/taskModal.vue index aa09db6fa0..a6b6d11a32 100644 --- a/website/client/components/tasks/taskModal.vue +++ b/website/client/components/tasks/taskModal.vue @@ -714,6 +714,9 @@ export default { }, }; }, + mounted () { + this.showAdvancedOptions = !this.user.preferences.advancedCollapsed; + }, watch: { task () { this.syncTask();