Skip to content

Commit 06d6732

Browse files
committed
docs: update readme.md
1 parent ab6e98a commit 06d6732

File tree

6 files changed

+19
-4
lines changed

6 files changed

+19
-4
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,12 @@ npm run dev
4444
```
4545
npm run build
4646
```
47+
48+
## Bugs & Issues
49+
50+
- Please submit [bugs and issues](https://github.com/gpustack/gpustack/issues) with a label `ui`
51+
52+
## Links
53+
54+
- Official website: https://gpustack.ai/
55+
- Documents: https://docs.gpustack.ai/latest/overview/

src/locales/en-US/common.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,6 @@ export default {
229229
'common.options.auto': 'Auto',
230230
'common.search.empty': 'No matching results found.',
231231
'common.button.downloadLog': 'Download Log',
232-
'common.button.faq': 'FAQ'
232+
'common.button.faq': 'FAQ',
233+
'common.button.moreInfo': 'More Info'
233234
};

src/locales/ru-RU/common.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,6 @@ export default {
227227
'common.options.auto': 'Авто',
228228
'common.search.empty': 'Ничего не найдено',
229229
'common.button.downloadLog': 'Скачать логи',
230-
'common.button.faq': 'TODO: Translate key "common.button.faq"'
230+
'common.button.faq': 'TODO: Translate key "common.button.faq"',
231+
'common.button.moreInfo': 'TODO: Translate key "common.button.moreInfo"'
231232
};

src/locales/zh-CN/common.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -222,5 +222,6 @@ export default {
222222
'common.options.auto': '自动',
223223
'common.search.empty': '未找到匹配结果',
224224
'common.button.downloadLog': '下载日志',
225-
'common.button.faq': '常见问题'
225+
'common.button.faq': '常见问题',
226+
'common.button.moreInfo': '更多信息'
226227
};

src/pages/llmodels/components/instance-item.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@ const InstanceItem: React.FC<InstanceItemProps> = ({
351351
}}
352352
>
353353
<span className="server-info">
354-
<InfoCircleOutlined />
354+
<InfoCircleOutlined className="m-r-2" />{' '}
355+
{intl.formatMessage({ id: 'common.button.moreInfo' })}
355356
</span>
356357
</Tooltip>
357358
</span>

src/pages/llmodels/style/instance-item.less

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
justify-content: flex-start;
1717
align-items: center;
1818
color: var(--ant-blue-5);
19+
cursor: pointer;
20+
white-space: nowrap;
1921

2022
.text {
2123
display: none;

0 commit comments

Comments
 (0)