Преглед изворни кода

feat: Fix translation issue of message_history_window_size #1739 (#2828)

### What problem does this PR solve?

feat: Fix translation issue of message_history_window_size #1739

### Type of change

- [ ] Bug Fix (non-breaking change which fixes an issue)
- [x] New Feature (non-breaking change which adds functionality)
- [ ] Documentation Update
- [ ] Refactoring
- [ ] Performance Improvement
- [ ] Other (please describe):
tags/v0.13.0
balibabu пре 1 година
родитељ
комит
df223eddf3
No account linked to committer's email address
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3
    3
      web/src/components/message-history-window-size-item.tsx

+ 3
- 3
web/src/components/message-history-window-size-item.tsx Прегледај датотеку

@@ -6,14 +6,14 @@ const MessageHistoryWindowSizeItem = ({
}: {
initialValue: number;
}) => {
const { t } = useTranslation('flow');
const { t } = useTranslation();

return (
<Form.Item
name={'message_history_window_size'}
label={t('messageHistoryWindowSize')}
label={t('flow.messageHistoryWindowSize')}
initialValue={initialValue}
tooltip={t('messageHistoryWindowSizeTip')}
tooltip={t('flow.messageHistoryWindowSizeTip')}
>
<InputNumber style={{ width: '100%' }} />
</Form.Item>

Loading…
Откажи
Сачувај