File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
components/dashboard/src/repositories/detail Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,16 @@ import { ConfigurationDetailGeneral } from "./ConfigurationDetailGeneral";
17
17
import { ConfigurationDetailWorkspaces } from "./ConfigurationDetailWorkspaces" ;
18
18
import { ConfigurationDetailPrebuilds } from "./ConfigurationDetailPrebuilds" ;
19
19
import { ConfigurationVariableList } from "./variables/ConfigurationVariableList" ;
20
+ import { useWorkspaceClasses } from "../../data/workspaces/workspace-classes-query" ;
20
21
21
22
type PageRouteParams = {
22
23
id : string ;
23
24
} ;
24
25
25
26
const ConfigurationDetailPage : FC = ( ) => {
27
+ // preload some data we may show
28
+ useWorkspaceClasses ( ) ;
29
+
26
30
const { id } = useParams < PageRouteParams > ( ) ;
27
31
let { path, url } = useRouteMatch ( ) ;
28
32
You can’t perform that action at this time.
0 commit comments