Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added info page #949

Merged
merged 23 commits into from
Dec 19, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: format codes
  • Loading branch information
guoqqqi committed Dec 19, 2020
commit c72fbbd815981be3ce58d2e3a8f7dc796c083b2c
4 changes: 2 additions & 2 deletions web/src/pages/ServerInfo/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ const ServerInfo: React.FC = () => {
</Select>
</Form.Item>
<Form.Item style={{ marginBottom: 0, fontSize: '12px', color: '#00000073' }}>
{formatMessage({ id: 'page.serverinfo.desc' })}
{formatMessage({ id: 'page.serverinfo.desc' })}&nbsp;
<a
href="https://github.com/apache/apisix/blob/master/doc/plugins/server-info.md"
target="_blank"
rel="noreferrer"
rel="noreferrer"
>
{formatMessage({ id: 'page.serverinfo.link' })}
</a>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/ServerInfo/locales/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ export default {
'page.serverinfo.pageContainer.title': 'Server Info',
'page.serverinfo.select.placeholder': 'Please select node',
'page.serverinfo.desc': 'The relevant plugin need to be enabled to report server info.',
'page.serverinfo.link': ' How to enable?',
'page.serverinfo.link': 'How to enable?',
};