fix new field group selection (#9301)

This commit is contained in:
Theraloss
2021-11-01 15:20:39 +01:00
committed by GitHub
parent ded3d4b141
commit 430bd03b9d

View File

@@ -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);
}
}