@bigbinary/neeto-fields-frontend 1.3.11 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -779,8 +779,7 @@ var dateTimeToString = function dateTimeToString(dateTime) {
|
|
|
779
779
|
return dateTime && dayjs(dateTime).toString() || "";
|
|
780
780
|
};
|
|
781
781
|
var getValueFromBool = function getValueFromBool(value) {
|
|
782
|
-
|
|
783
|
-
return value;
|
|
782
|
+
return value === true ? t("neetoFields.common.yes") : t("neetoFields.common.no");
|
|
784
783
|
};
|
|
785
784
|
|
|
786
785
|
var _excluded$6 = ["name", "id", "kind", "data", "individualSubmit", "formRef", "formRefs", "disabled", "isRequiredColumnName", "isInline", "onBlur"];
|