Skip to content

Commit

Permalink
feat: update LogsTable input and button sizes to 'small' for improved…
Browse files Browse the repository at this point in the history
… UI consistency
  • Loading branch information
songquanpeng committed Feb 2, 2025
1 parent 95009b2 commit a56cb4a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions web/default/src/components/LogsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.token_name')}
size={'small'}
width={3}
value={token_name}
placeholder={t('log.table.token_name_placeholder')}
Expand All @@ -337,6 +338,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.model_name')}
size={'small'}
width={3}
value={model_name}
placeholder={t('log.table.model_name_placeholder')}
Expand All @@ -346,6 +348,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.start_time')}
size={'small'}
width={4}
value={start_timestamp}
type='datetime-local'
Expand All @@ -355,6 +358,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.end_time')}
size={'small'}
width={4}
value={end_timestamp}
type='datetime-local'
Expand All @@ -364,6 +368,7 @@ const LogsTable = () => {
<Form.Button
fluid
label={t('log.buttons.query')}
size={'small'}
width={2}
onClick={refresh}
>
Expand All @@ -376,6 +381,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.channel_id')}
size={'small'}
width={3}
value={channel}
placeholder={t('log.table.channel_id_placeholder')}
Expand All @@ -385,6 +391,7 @@ const LogsTable = () => {
<Form.Input
fluid
label={t('log.table.username')}
size={'small'}
width={3}
value={username}
placeholder={t('log.table.username_placeholder')}
Expand Down

0 comments on commit a56cb4a

Please sign in to comment.