@visns-studio/visns-components 4.1.4 → 4.1.5
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/components/crm/Form.jsx +7 -7
- package/package.json +1 -1
package/components/crm/Form.jsx
CHANGED
|
@@ -1285,13 +1285,13 @@ function Form({
|
|
|
1285
1285
|
? formSettings.sortButton.label
|
|
1286
1286
|
: 'Sort'}
|
|
1287
1287
|
</button>
|
|
1288
|
-
) :
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1288
|
+
) : null}
|
|
1289
|
+
|
|
1290
|
+
<button className="btn" onClick={handleSubmit}>
|
|
1291
|
+
{formSettings?.save?.button?.label
|
|
1292
|
+
? formSettings.save.button.label
|
|
1293
|
+
: 'Save'}
|
|
1294
|
+
</button>
|
|
1295
1295
|
</div>
|
|
1296
1296
|
</div>
|
|
1297
1297
|
);
|
package/package.json
CHANGED