Skip to content

Commit 18d2853

Browse files
s-sajid-aliclaude
andcommitted
fix(storage-finder): add "small" and "medium" as alternative storage capacity matchers
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
1 parent d92eb71 commit 18d2853

File tree

1 file changed

+2
-2
lines changed
  • scripts/storage-finder-data-generator

1 file changed

+2
-2
lines changed

scripts/storage-finder-data-generator/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,11 +460,11 @@ export const FACET_CONFIGS: FacetConfig[] = [
460460
],
461461
matchers: [
462462
{
463-
pattern: /\b20\s*GB\b/i,
463+
pattern: /\b(20\s*GB|small)\b/i,
464464
choices: ["storage-capacity.small"],
465465
},
466466
{
467-
pattern: /\b(50\s*GB|2TB|2\s*TB)\b/i,
467+
pattern: /\b(50\s*GB|2TB|2\s*TB|medium)\b/i,
468468
choices: ["storage-capacity.small", "storage-capacity.medium"],
469469
},
470470
{

0 commit comments

Comments
 (0)