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> = ({
9292
9393 return (
9494 < 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+
95111 { /* Environment Header Component */ }
96112 < EnvironmentHeader
97113 environment = { environment }
@@ -112,20 +128,6 @@ const UnlicensedEnvironmentView: React.FC<UnlicensedEnvironmentViewProps> = ({
112128 ) ) }
113129 </ Row >
114130
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- />
129131
130132 { /* License Issue Card */ }
131133 < Card
@@ -169,7 +171,6 @@ const UnlicensedEnvironmentView: React.FC<UnlicensedEnvironmentViewProps> = ({
169171 < Button
170172 type = "primary"
171173 size = "large"
172- icon = { < CustomerServiceOutlined /> }
173174 onClick = { ( ) => setIsContactModalVisible ( true ) }
174175 style = { {
175176 width : '100%' ,
Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ import {App} from "../types/app.types";
77import { DataSourceWithMeta } from '../types/datasource.types' ;
88import { Query , QueryResponse } from "../types/query.types" ;
99import { checkEnvironmentLicense } from './license.service' ;
10-
11-
12-
10+ import { trans } from "i18n" ;
1311
1412export async function updateEnvironment (
1513 environmentId : string ,
You can’t perform that action at this time.
0 commit comments