@knovator/pagecreator-admin 1.2.1 → 1.2.2
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/index.cjs +1 -4
- package/index.js +1 -4
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -7252,11 +7252,8 @@ const WidgetForm = ({
|
|
|
7252
7252
|
}, Array.isArray(languages) && languages.length > 0 ? {
|
|
7253
7253
|
label: commonTranslations.title,
|
|
7254
7254
|
accessor: 'widgetTitles',
|
|
7255
|
-
required:
|
|
7255
|
+
required: false,
|
|
7256
7256
|
type: customInputs && customInputs['widgetTitles'] ? undefined : 'text',
|
|
7257
|
-
validations: {
|
|
7258
|
-
required: commonTranslations.titleRequired
|
|
7259
|
-
},
|
|
7260
7257
|
info: widgetTranslations.widgetTitleInfo,
|
|
7261
7258
|
placeholder: commonTranslations.titlePlaceholder,
|
|
7262
7259
|
onInput: handleCapitalize,
|
package/index.js
CHANGED
|
@@ -7240,11 +7240,8 @@ const WidgetForm = ({
|
|
|
7240
7240
|
}, Array.isArray(languages) && languages.length > 0 ? {
|
|
7241
7241
|
label: commonTranslations.title,
|
|
7242
7242
|
accessor: 'widgetTitles',
|
|
7243
|
-
required:
|
|
7243
|
+
required: false,
|
|
7244
7244
|
type: customInputs && customInputs['widgetTitles'] ? undefined : 'text',
|
|
7245
|
-
validations: {
|
|
7246
|
-
required: commonTranslations.titleRequired
|
|
7247
|
-
},
|
|
7248
7245
|
info: widgetTranslations.widgetTitleInfo,
|
|
7249
7246
|
placeholder: commonTranslations.titlePlaceholder,
|
|
7250
7247
|
onInput: handleCapitalize,
|