Skip to content

Commit

Permalink
[ISSUE alibaba#12168] 修复系统语言切换至英文后,权限控制-角色管理页面的查询条件的label还显示的是中文
Browse files Browse the repository at this point in the history
  • Loading branch information
misakacoder committed Jun 3, 2024
1 parent 0779df8 commit 3bffc4d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class RolesManagement extends React.Component {
<RegionGroup left={locale.roleManagement} />

<Form inline>
<Form.Item label="用户名">
<Form.Item label={locale.username}>
<Input
value={this.state.username}
htmlType="text"
Expand All @@ -120,7 +120,7 @@ class RolesManagement extends React.Component {
}}
/>
</Form.Item>
<Form.Item label="角色名">
<Form.Item label={locale.role}>
<Input
value={this.state.role}
htmlType="text"
Expand Down
4 changes: 2 additions & 2 deletions console/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<link rel="stylesheet" type="text/css" href="console-ui/public/css/icon.css">
<link rel="stylesheet" type="text/css" href="console-ui/public/css/font-awesome.css">
<!-- 第三方css结束 -->
<link href="./css/main.css?90f4394014c7c54e8c73" rel="stylesheet"></head>
<link href="./css/main.css?5b2657aaac80512bd557" rel="stylesheet"></head>

<body>
<div id="root" style="overflow:hidden"></div>
Expand All @@ -56,6 +56,6 @@
<script src="console-ui/public/js/merge.js"></script>
<script src="console-ui/public/js/loader.js"></script>
<!-- 第三方js结束 -->
<script type="text/javascript" src="./js/main.js?90f4394014c7c54e8c73"></script></body>
<script type="text/javascript" src="./js/main.js?5b2657aaac80512bd557"></script></body>

</html>
Loading

0 comments on commit 3bffc4d

Please sign in to comment.