File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ export function X11({
374374
375375 if ( disabled ) {
376376 const no_info = config_unknown
377- ? "There is no X11 configuration information available. You might have to restart this project"
377+ ? "There is no X11 configuration information available. You might have to restart this project. "
378378 : "" ;
379379 return (
380380 < div className = "smc-vfill" style = { { padding : "100px auto auto auto" } } >
Original file line number Diff line number Diff line change 66import { useTypedRedux } from "@cocalc/frontend/app-framework" ;
77import { ALL_AVAIL } from "@cocalc/frontend/project_configuration" ;
88
9+ // ws: I fundamentally disagree with this. We should show what we support,
10+ // and make it easy to install support for things that aren't installed.
11+ const DISABLED = true ;
12+
913export function useAvailableFeatures ( project_id : string ) {
14+ if ( DISABLED ) {
15+ return ALL_AVAIL ;
16+ }
17+
1018 const available_features = useTypedRedux (
1119 { project_id } ,
12- "available_features"
20+ "available_features" ,
1321 ) ;
1422
1523 // If the configuration is not yet available, we default to the *most likely*
You can’t perform that action at this time.
0 commit comments