Преглед на файлове

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
TheoryOfNekomata преди 1 година
родител
ревизия
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);
};


Зареждане…
Отказ
Запис