Skip to content

Commit a8fe335

Browse files
authored
Merge pull request #1494 from RedisInsight/fe/bugfix/rename-advanced-settings
fe/bugfix/rename-advanced-settings-to-list-view
2 parents 9c96148 + 0ecc946 commit a8fe335

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

redisinsight/ui/src/components/settings-item/SettingItem.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const mockedProps = {
2121
initValue: '10000',
2222
onApply: jest.fn(),
2323
validation: jest.fn((x) => x),
24-
title: 'Keys to Scan in Browser',
24+
title: 'Keys to Scan in List view',
2525
summary: 'Sets the amount of keys to scan per one iteration. Filtering by pattern per a large number of keys may decrease performance.',
2626
testid: 'keys-to-scan',
2727
placeholder: '10 000',

redisinsight/ui/src/pages/settings/components/advanced-settings/AdvancedSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const AdvancedSettings = () => {
2929
initValue={scanThreshold.toString()}
3030
onApply={handleApplyKeysToScanChanges}
3131
validation={validateCountNumber}
32-
title="Keys to Scan in Browser"
32+
title="Keys to Scan in List view"
3333
summary="Sets the amount of keys to scan per one iteration. Filtering by pattern per a large number of keys may decrease performance."
3434
testid="keys-to-scan"
3535
placeholder="10 000"

0 commit comments

Comments
 (0)