ソースを参照

Choose null instead of empty string for value

The value attribute of fields expect a string. We use a sentinel value
to clear the field.
master
コミット
1505606ad7
1個のファイルの変更1行の追加3行の削除
  1. +1
    -3
      src/index.ts

+ 1
- 3
src/index.ts ファイルの表示

@@ -1311,9 +1311,7 @@ export const clearFormValues = (
);
const elementsWithSameName = getElementsOfSameName(filteredFieldElements);
const objectValues = Object.fromEntries(
Object.entries(elementsWithSameName).map(([key]) => [
key, '',
]),
Object.entries(elementsWithSameName).map(([key]) => [key, null]),
);
doSetFormValues(filteredFieldElements, elementsWithSameName, objectValues);
};


読み込み中…
キャンセル
保存