File tree Expand file tree Collapse file tree
app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import {
1313 FormLayout ,
1414 Icon ,
1515 Input ,
16+ Spinner ,
1617 Tab ,
1718 TabList ,
1819 Tabs ,
@@ -22,7 +23,6 @@ import {
2223
2324import { GraphQL } from '@/lib/api' ;
2425import { Icons } from '@/components/icons' ;
25- import { Loading } from '@/components/loading' ;
2626
2727const datasetQueryDoc : any = graphql ( `
2828 query datasetTitleQuery($filters: DatasetFilter) {
@@ -112,7 +112,9 @@ export function EditLayout({ children, params }: LayoutProps) {
112112 return (
113113 < div className = "mt-8 flex h-full flex-col" >
114114 { getDatasetTitleRes . isLoading ? (
115- < Loading />
115+ < div className = "flex flex-row items-center justify-center" >
116+ < Spinner size = { 24 } />
117+ </ div >
116118 ) : (
117119 < Header
118120 dataset = { getDatasetTitleRes ?. data ?. datasets [ 0 ] }
You can’t perform that action at this time.
0 commit comments