@@ -18,8 +18,6 @@ import { ProjectActions } from "@cocalc/frontend/project_store";
18
18
import track from "@cocalc/frontend/user-tracking" ;
19
19
import { KUCALC_COCALC_COM } from "@cocalc/util/db-schema/site-defaults" ;
20
20
21
- const SHOW_SERVER_LAUNCHERS = false ;
22
-
23
21
import TourButton from "./tour/button" ;
24
22
25
23
const OPEN_MSG = defineMessage ( {
@@ -176,7 +174,7 @@ export const MiscSideButtons: React.FC<Props> = (props) => {
176
174
// we make sure the url ends with a slash, without messing up the full URL
177
175
const s = base . slice ( base . length - 1 ) === "/" ? "" : "/" ;
178
176
const url = `${ base } ${ s } ${ current_path ? "lab/tree/" + current_path : "" } ` ;
179
- const values = { name : SPEC . code . longName } ;
177
+ const values = { name : SPEC . jupyterlab . longName } ;
180
178
const tooltip = intl . formatMessage ( OPEN_MSG , values ) ;
181
179
const description = intl . formatMessage ( SPEC . jupyterlab . description , values ) ;
182
180
return (
@@ -209,12 +207,10 @@ export const MiscSideButtons: React.FC<Props> = (props) => {
209
207
style = { { whiteSpace : "nowrap" , padding : "0" } }
210
208
className = "pull-right"
211
209
>
212
- { SHOW_SERVER_LAUNCHERS && (
213
- < Space . Compact >
214
- { render_jupyterlab_button ( ) }
215
- { render_vscode_button ( ) }
216
- </ Space . Compact >
217
- ) }
210
+ < Space . Compact >
211
+ { render_jupyterlab_button ( ) }
212
+ { render_vscode_button ( ) }
213
+ </ Space . Compact >
218
214
< Space . Compact >
219
215
{ render_upload_button ( ) }
220
216
{ render_library_button ( ) }
0 commit comments