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({
374
374
375
375
if ( disabled ) {
376
376
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. "
378
378
: "" ;
379
379
return (
380
380
< div className = "smc-vfill" style = { { padding : "100px auto auto auto" } } >
Original file line number Diff line number Diff line change 6
6
import { useTypedRedux } from "@cocalc/frontend/app-framework" ;
7
7
import { ALL_AVAIL } from "@cocalc/frontend/project_configuration" ;
8
8
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
+
9
13
export function useAvailableFeatures ( project_id : string ) {
14
+ if ( DISABLED ) {
15
+ return ALL_AVAIL ;
16
+ }
17
+
10
18
const available_features = useTypedRedux (
11
19
{ project_id } ,
12
- "available_features"
20
+ "available_features" ,
13
21
) ;
14
22
15
23
// 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