From bb42c30ba37f03722217cf339eaf5a201962c0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arsenije=20Savi=C4=87?= Date: Mon, 21 Oct 2024 09:23:15 -0600 Subject: [PATCH] fix(step-icon): load icons when editing draft --- src/pages/proposals/create/StepIcon.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/proposals/create/StepIcon.vue b/src/pages/proposals/create/StepIcon.vue index c1b1b0646..4e4647ba5 100644 --- a/src/pages/proposals/create/StepIcon.vue +++ b/src/pages/proposals/create/StepIcon.vue @@ -44,6 +44,7 @@ export default { const split = (this.$store.state.proposals.draft.icon || '').split(':') this.selectedIcon = split[1] this.type = split[0] + this.filteredIcons = [...this.icons] }, watch: { iconSearch (search) {