@@ -34,13 +34,13 @@ const DbLabInstanceInstallForm = (props: DbLabInstanceFormWithStylesProps) => {
34
34
35
35
const permitted = ! orgPermissions || orgPermissions . dblabInstanceCreate
36
36
37
- const pageTitle = < ConsolePageTitle title = "Install DLE " />
37
+ const pageTitle = < ConsolePageTitle title = "Install DBLab " />
38
38
const breadcrumbs = (
39
39
< ConsoleBreadcrumbsWrapper
40
40
{ ...props }
41
41
breadcrumbs = { [
42
42
{ name : 'Database Lab Instances' , url : 'instances' } ,
43
- { name : 'Install DLE ' } ,
43
+ { name : 'Install DBLab ' } ,
44
44
] }
45
45
/>
46
46
)
@@ -82,10 +82,10 @@ const DbLabInstanceInstallForm = (props: DbLabInstanceFormWithStylesProps) => {
82
82
{ state . formStep === initialState . formStep && permitted ? (
83
83
< >
84
84
< div className = { classes . form } >
85
- < p className = { classes . sectionTitle } > 1. Provide DLE name</ p >
85
+ < p className = { classes . sectionTitle } > 1. Provide DBLab name</ p >
86
86
< TextField
87
87
required
88
- label = "DLE Name"
88
+ label = "DBLab Name"
89
89
variant = "outlined"
90
90
fullWidth
91
91
value = { state . name }
@@ -108,12 +108,12 @@ const DbLabInstanceInstallForm = (props: DbLabInstanceFormWithStylesProps) => {
108
108
}
109
109
/>
110
110
< p className = { classes . sectionTitle } >
111
- 2. Define DLE verification token (keep it secret!)
111
+ 2. Define DBLab verification token (keep it secret!)
112
112
</ p >
113
113
< div className = { classes . generateContainer } >
114
114
< TextField
115
115
required
116
- label = "DLE Verification Token"
116
+ label = "DBLab Verification Token"
117
117
variant = "outlined"
118
118
fullWidth
119
119
value = { state . verificationToken }
@@ -142,7 +142,7 @@ const DbLabInstanceInstallForm = (props: DbLabInstanceFormWithStylesProps) => {
142
142
</ Button >
143
143
</ div >
144
144
< p className = { classes . sectionTitle } >
145
- 3. Choose DLE server version
145
+ 3. Choose DBLab server version
146
146
</ p >
147
147
< Select
148
148
label = "Select tag"
@@ -171,7 +171,7 @@ const DbLabInstanceInstallForm = (props: DbLabInstanceFormWithStylesProps) => {
171
171
</ p > { ' ' }
172
172
< p className = { classes . instanceParagraph } >
173
173
The specified ssh public keys will be added to authorized_keys
174
- on the DLE server. Add your public key here to have access to
174
+ on the DBLab server. Add your public key here to have access to
175
175
the server after deployment.
176
176
</ p >
177
177
< TextField
0 commit comments