Skip to content

Commit 15bfbf9

Browse files
authored
Remove "all" from page options in sensitivity analysis result (#3321)
1 parent c88571d commit 15bfbf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/results/sensitivity-analysis/sensitivity-analysis-result-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export const SUFFIX_TYPES = {
3737
[SENSITIVITY_AT_NODE]: 'kV',
3838
};
3939

40-
export const PAGE_OPTIONS = [10, 25, 100, { label: 'All', value: -1 }];
41-
export const DEFAULT_PAGE_COUNT = PAGE_OPTIONS[1];
40+
export const PAGE_OPTIONS = [25, 100, 500, 1000];
41+
export const DEFAULT_PAGE_COUNT = PAGE_OPTIONS[0];
4242
export const DATA_KEY_TO_FILTER_KEY_N = {
4343
funcId: 'functionId',
4444
varId: 'variableId',

0 commit comments

Comments
 (0)