From 430bd03b9d024b56d3d16aeb5d82ec6bf7eccbd7 Mon Sep 17 00:00:00 2001 From: Theraloss Date: Mon, 1 Nov 2021 15:20:39 +0100 Subject: [PATCH] fix new field group selection (#9301) --- .../data-model/field-detail/store/alterations/group.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/modules/settings/routes/data-model/field-detail/store/alterations/group.ts b/app/src/modules/settings/routes/data-model/field-detail/store/alterations/group.ts index 416a36964c..3bbcca9c1e 100644 --- a/app/src/modules/settings/routes/data-model/field-detail/store/alterations/group.ts +++ b/app/src/modules/settings/routes/data-model/field-detail/store/alterations/group.ts @@ -5,9 +5,9 @@ export function applyChanges(updates: StateUpdates, state: State, helperFn: Help const { hasChanged } = helperFn; if (hasChanged('localType')) { - this.removeSchema(updates, state, helperFn); - this.setTypeToAlias(updates, state, helperFn); - this.setSpecialToGroup(updates, state, helperFn); + removeSchema(updates); + setTypeToAlias(updates); + setSpecialToGroup(updates); } }