next-helios-fe 1.10.22 → 1.10.23
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/package.json +1 -1
- package/src/components/table/index.tsx +2 -0
package/package.json
CHANGED
|
@@ -1172,6 +1172,7 @@ export const Table: TableComponentProps = ({
|
|
|
1172
1172
|
{ label: "50", value: "50" },
|
|
1173
1173
|
{ label: "100", value: "100" },
|
|
1174
1174
|
]}
|
|
1175
|
+
required
|
|
1175
1176
|
disabled={loading}
|
|
1176
1177
|
value={maxRow?.toString()}
|
|
1177
1178
|
onChange={(e) => {
|
|
@@ -1192,6 +1193,7 @@ export const Table: TableComponentProps = ({
|
|
|
1192
1193
|
{ label: "50", value: "50" },
|
|
1193
1194
|
{ label: "100", value: "100" },
|
|
1194
1195
|
]}
|
|
1196
|
+
required
|
|
1195
1197
|
disabled={loading}
|
|
1196
1198
|
value={maxRow?.toString()}
|
|
1197
1199
|
onChange={(e) => {
|