Skip to content

Commit 7f4558e

Browse files
committed
feat(client/widget): Remove invalid/possible dangerous state from state change widget
1 parent 3278158 commit 7f4558e

File tree

1 file changed

+8
-1
lines changed
  • client/src/widgets/state-change-widget

1 file changed

+8
-1
lines changed

client/src/widgets/state-change-widget/states.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import { ejectorStates, seedStates, State } from '../../model/state';
22

3-
const nonVisibleStateNames = ['N/A', 'Invalid', '*'];
3+
const nonVisibleStateNames = [
4+
'N/A',
5+
'Invalid',
6+
'*',
7+
'Post',
8+
'STATIC_TEST_ENTRY',
9+
'STATIC_TEST'
10+
];
411

512
function createStateIds(states: Record<number, State>): number[] {
613
return Object.keys(states) as unknown as number[];

0 commit comments

Comments
 (0)