mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-09-04 17:37:19 +00:00
feat(logs): add 1000 rows option and drop 10 from log row count selectors
This commit is contained in:
@@ -80,11 +80,11 @@ export default function LogModal({ open, onClose }: LogModalProps) {
|
|||||||
style={{ width: 70 }}
|
style={{ width: 70 }}
|
||||||
onChange={setRows}
|
onChange={setRows}
|
||||||
options={[
|
options={[
|
||||||
{ value: '10', label: '10' },
|
|
||||||
{ value: '20', label: '20' },
|
{ value: '20', label: '20' },
|
||||||
{ value: '50', label: '50' },
|
{ value: '50', label: '50' },
|
||||||
{ value: '100', label: '100' },
|
{ value: '100', label: '100' },
|
||||||
{ value: '500', label: '500' },
|
{ value: '500', label: '500' },
|
||||||
|
{ value: '1000', label: '1000' },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Select
|
<Select
|
||||||
|
|||||||
@@ -130,11 +130,11 @@ export default function XrayLogModal({ open, onClose }: XrayLogModalProps) {
|
|||||||
style={{ width: 70 }}
|
style={{ width: 70 }}
|
||||||
onChange={setRows}
|
onChange={setRows}
|
||||||
options={[
|
options={[
|
||||||
{ value: '10', label: '10' },
|
|
||||||
{ value: '20', label: '20' },
|
{ value: '20', label: '20' },
|
||||||
{ value: '50', label: '50' },
|
{ value: '50', label: '50' },
|
||||||
{ value: '100', label: '100' },
|
{ value: '100', label: '100' },
|
||||||
{ value: '500', label: '500' },
|
{ value: '500', label: '500' },
|
||||||
|
{ value: '1000', label: '1000' },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|||||||
Reference in New Issue
Block a user