File tree Expand file tree Collapse file tree 2 files changed +17
-18
lines changed
client/packages/lowcoder/src/pages/setting/environments Expand file tree Collapse file tree 2 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,22 @@ const UnlicensedEnvironmentView: React.FC<UnlicensedEnvironmentViewProps> = ({
92
92
93
93
return (
94
94
< Level1SettingPageContent style = { { minWidth : "1000px" } } >
95
+
96
+ { /* Breadcrumbs */ }
97
+ < ModernBreadcrumbs
98
+ items = { [
99
+ {
100
+ key : 'environments' ,
101
+ title : 'Environments' ,
102
+ onClick : ( ) => history . push ( '/setting/environments' )
103
+ } ,
104
+ {
105
+ key : 'current' ,
106
+ title : environment . environmentName || "Environment Detail"
107
+ }
108
+ ] }
109
+ />
110
+
95
111
{ /* Environment Header Component */ }
96
112
< EnvironmentHeader
97
113
environment = { environment }
@@ -112,20 +128,6 @@ const UnlicensedEnvironmentView: React.FC<UnlicensedEnvironmentViewProps> = ({
112
128
) ) }
113
129
</ Row >
114
130
115
- { /* Breadcrumbs */ }
116
- < ModernBreadcrumbs
117
- items = { [
118
- {
119
- key : 'environments' ,
120
- title : 'Environments' ,
121
- onClick : ( ) => history . push ( '/setting/environments' )
122
- } ,
123
- {
124
- key : 'current' ,
125
- title : environment . environmentName || "Environment Detail"
126
- }
127
- ] }
128
- />
129
131
130
132
{ /* License Issue Card */ }
131
133
< Card
@@ -169,7 +171,6 @@ const UnlicensedEnvironmentView: React.FC<UnlicensedEnvironmentViewProps> = ({
169
171
< Button
170
172
type = "primary"
171
173
size = "large"
172
- icon = { < CustomerServiceOutlined /> }
173
174
onClick = { ( ) => setIsContactModalVisible ( true ) }
174
175
style = { {
175
176
width : '100%' ,
Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ import {App} from "../types/app.types";
7
7
import { DataSourceWithMeta } from '../types/datasource.types' ;
8
8
import { Query , QueryResponse } from "../types/query.types" ;
9
9
import { checkEnvironmentLicense } from './license.service' ;
10
-
11
-
12
-
10
+ import { trans } from "i18n" ;
13
11
14
12
export async function updateEnvironment (
15
13
environmentId : string ,
You can’t perform that action at this time.
0 commit comments