Skip to content

Commit a56cb4a

Browse files
committed
feat: update LogsTable input and button sizes to 'small' for improved UI consistency
1 parent 95009b2 commit a56cb4a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

web/default/src/components/LogsTable.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ const LogsTable = () => {
328328
<Form.Input
329329
fluid
330330
label={t('log.table.token_name')}
331+
size={'small'}
331332
width={3}
332333
value={token_name}
333334
placeholder={t('log.table.token_name_placeholder')}
@@ -337,6 +338,7 @@ const LogsTable = () => {
337338
<Form.Input
338339
fluid
339340
label={t('log.table.model_name')}
341+
size={'small'}
340342
width={3}
341343
value={model_name}
342344
placeholder={t('log.table.model_name_placeholder')}
@@ -346,6 +348,7 @@ const LogsTable = () => {
346348
<Form.Input
347349
fluid
348350
label={t('log.table.start_time')}
351+
size={'small'}
349352
width={4}
350353
value={start_timestamp}
351354
type='datetime-local'
@@ -355,6 +358,7 @@ const LogsTable = () => {
355358
<Form.Input
356359
fluid
357360
label={t('log.table.end_time')}
361+
size={'small'}
358362
width={4}
359363
value={end_timestamp}
360364
type='datetime-local'
@@ -364,6 +368,7 @@ const LogsTable = () => {
364368
<Form.Button
365369
fluid
366370
label={t('log.buttons.query')}
371+
size={'small'}
367372
width={2}
368373
onClick={refresh}
369374
>
@@ -376,6 +381,7 @@ const LogsTable = () => {
376381
<Form.Input
377382
fluid
378383
label={t('log.table.channel_id')}
384+
size={'small'}
379385
width={3}
380386
value={channel}
381387
placeholder={t('log.table.channel_id_placeholder')}
@@ -385,6 +391,7 @@ const LogsTable = () => {
385391
<Form.Input
386392
fluid
387393
label={t('log.table.username')}
394+
size={'small'}
388395
width={3}
389396
value={username}
390397
placeholder={t('log.table.username_placeholder')}

0 commit comments

Comments
 (0)