Skip to content

Commit a208762

Browse files
committed
Enables quere params for file list
1 parent 669ebf9 commit a208762

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/components/file/FileListFilterForm.jsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,18 @@ const queryParams = () => (
5353
<Field name="storageType" component={TextField} fullWidth />
5454
<Field name="scheme" component={TextField} fullWidth />
5555
<FieldTypeArray name="methodMetadata" label="Method Metadata" component={KeyValuePairType} />
56-
<Field name="first" component={TextField} type="number" fullWidth disabled />
57-
<Field name="number" component={TextField} type="number" fullWidth disabled />
58-
<Field name="prefixFirst" component={TextField} type="number" fullWidth disabled />
59-
<Field name="prefixNumber" component={TextField} type="number" fullWidth disabled />
60-
<Field name="sort" component={ChipInput} simple fullWidth disabled />
56+
<Field name="first" component={TextField} type="number" fullWidth />
57+
<Field name="number" component={TextField} type="number" fullWidth />
58+
<Field name="cursor" component={TextField} fullWidth />
59+
<Field name="prefixFirst" component={TextField} type="number" fullWidth />
60+
<Field name="prefixNumber" component={TextField} type="number" fullWidth />
61+
<Field name="sort" component={ChipInput} simple fullWidth />
6162
<Field
6263
name="storage"
6364
component={StatefulAsyncSelect}
6465
loadOptions={loadStorageOptions}
6566
cacheOptions
6667
isClearable
67-
required
6868
fullWidth
6969
creatable
7070
/>
@@ -74,7 +74,6 @@ const queryParams = () => (
7474
loadOptions={loadStorageGroupOptions}
7575
cacheOptions
7676
isClearable
77-
required
7877
fullWidth
7978
creatable
8079
/>

0 commit comments

Comments
 (0)