@equinor/apollo-components 3.1.2-beta.0 → 3.1.2-beta.1
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7027,7 +7027,7 @@ function EditableTextFieldCell(context) {
|
|
|
7027
7027
|
render: ({ field: { value, ...field }, fieldState: { error } }) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(InlineTextField3, {
|
|
7028
7028
|
id: context.column.id,
|
|
7029
7029
|
autoComplete: "none",
|
|
7030
|
-
value: String(value),
|
|
7030
|
+
value: String(value ?? ""),
|
|
7031
7031
|
...field,
|
|
7032
7032
|
...getHelperTextProps({ error })
|
|
7033
7033
|
})
|
package/dist/index.mjs
CHANGED
|
@@ -6990,7 +6990,7 @@ function EditableTextFieldCell(context) {
|
|
|
6990
6990
|
render: ({ field: { value, ...field }, fieldState: { error } }) => /* @__PURE__ */ jsx26(InlineTextField3, {
|
|
6991
6991
|
id: context.column.id,
|
|
6992
6992
|
autoComplete: "none",
|
|
6993
|
-
value: String(value),
|
|
6993
|
+
value: String(value ?? ""),
|
|
6994
6994
|
...field,
|
|
6995
6995
|
...getHelperTextProps({ error })
|
|
6996
6996
|
})
|