From 81166b56e4199a04925db8c0e7eb0afcde14d91a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Mon, 2 Aug 2021 23:08:26 +0200 Subject: [PATCH] Keeping the visible and hidden options when you change the grouping (#873) --- webapp/src/mutator.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/webapp/src/mutator.ts b/webapp/src/mutator.ts index 3feecd61c..276329e6c 100644 --- a/webapp/src/mutator.ts +++ b/webapp/src/mutator.ts @@ -447,8 +447,6 @@ class Mutator { async changeViewGroupById(view: BoardView, groupById: string): Promise { const newView = createBoardView(view) newView.fields.groupById = groupById - newView.fields.hiddenOptionIds = [] - newView.fields.visibleOptionIds = [] await this.updateBlock(newView, view, 'group by') }