diff --git a/src-web/components/core/BulkPairEditor.tsx b/src-web/components/core/BulkPairEditor.tsx index e0a51c62..7cf25073 100644 --- a/src-web/components/core/BulkPairEditor.tsx +++ b/src-web/components/core/BulkPairEditor.tsx @@ -4,7 +4,13 @@ import type { PairEditorProps } from './PairEditor'; type Props = PairEditorProps; -export function BulkPairEditor({ pairs, onChange, namePlaceholder, valuePlaceholder }: Props) { +export function BulkPairEditor({ + pairs, + onChange, + namePlaceholder, + valuePlaceholder, + forceUpdateKey, +}: Props) { const pairsText = useMemo(() => { return pairs .filter((p) => !(p.name.trim() === '' && p.value.trim() === '')) @@ -27,6 +33,7 @@ export function BulkPairEditor({ pairs, onChange, namePlaceholder, valuePlacehol