fix: logMaxRows value

This commit is contained in:
kunish 2023-09-14 18:33:27 +08:00
parent b66dd8902d
commit b3c924e33b
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430
2 changed files with 4 additions and 10 deletions

View File

@ -437,17 +437,11 @@ const ConfigForXd = () => {
<select
class="select select-bordered w-full max-w-xs"
value={rows}
onChange={(e) => {
setLogMaxRows(parseInt(e.target.value))
}}
value={logMaxRows()}
onChange={(e) => setLogMaxRows(parseInt(e.target.value))}
>
<For each={LOGS_TABLE_MAX_ROWS_LIST}>
{(rows) => (
<option value={rows}>
{rows}
</option>
)}
{(rows) => <option value={rows}>{rows}</option>}
</For>
</select>
</div>