diff --git a/src-web/components/core/BulkPairEditor.tsx b/src-web/components/core/BulkPairEditor.tsx index 3b428a74..7b2abb7f 100644 --- a/src-web/components/core/BulkPairEditor.tsx +++ b/src-web/components/core/BulkPairEditor.tsx @@ -43,7 +43,7 @@ export function BulkPairEditor({ } function lineToPair(line: string): PairEditorProps['pairs'][0] { - const [, name, value] = line.match(/^(:?[^:]+):\s+([^$]*)/) ?? []; + const [, name, value] = line.match(/^(:?[^:]+):\s+(.*)$/) ?? []; const pair: PairEditorProps['pairs'][0] = { enabled: true,