File tree Expand file tree Collapse file tree 4 files changed +6
-13
lines changed
packages/tdb-dashboard/src Expand file tree Collapse file tree 4 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -1062,6 +1062,10 @@ pre.CodeMirror-line > span > span.cm-string {
1062
1062
background-color : transparent !important ;
1063
1063
}
1064
1064
1065
+ .graphiql-un-styled [data-value = "settings" ]{
1066
+ display : none !important ;
1067
+ }
1068
+
1065
1069
/*
1066
1070
.graphiql-container .graphiql-chevron-icon{
1067
1071
color:white;
Original file line number Diff line number Diff line change 11
11
< link href ='/assets/leaflet.fullscreenv1.0.1.css ' rel ='stylesheet ' />
12
12
</ style >
13
13
</ head >
14
- < body class =" graphiql-dark " >
14
+ < body >
15
15
< div id ="root " class ="h-100 ">
16
16
</ div >
17
17
< style >
Original file line number Diff line number Diff line change @@ -17,15 +17,9 @@ function NavigationComponent(){
17
17
18
18
let navigate = useNavigate ( ) ;
19
19
const redirect_uri = window . location . origin
20
-
21
-
22
- // this happen after confirm you password linking in the email url
23
- /* if (window.location.search.includes("supportSignUp=true")) {
24
- // window.location.replace('/')
25
- }*/
20
+ localStorage . setItem ( "graphiql:theme" , "dark" )
26
21
// you enter here only if you are log - in
27
22
const onRedirectCallback = ( appState ) => {
28
-
29
23
navigate ( appState && appState . targetUrl ? appState . targetUrl : window . location . pathname ) ;
30
24
31
25
} ;
@@ -48,9 +42,6 @@ function NavigationComponent(){
48
42
return < LoginModal showModal = { true } isCloseble = { false } />
49
43
}
50
44
51
-
52
-
53
-
54
45
return < WOQLClientProvider params = { localSettings } >
55
46
< App />
56
47
</ WOQLClientProvider >
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ import { GraphiQL } from "graphiql";
6
6
import { Layout } from "./Layout" ;
7
7
import { WOQLClientObj } from '../init-woql-client'
8
8
require ( "graphiql/graphiql.min.css" ) ;
9
- //require('codemirror/lib/codemirror.css');
10
- //require('codemirror/theme/shadowfox.css');
11
9
12
10
export function GraphIqlEditor ( { } ) {
13
11
const { woqlClient, currentChangeRequest} = WOQLClientObj ( )
You can’t perform that action at this time.
0 commit comments