visuddhinanda 3 лет назад
Родитель
Сommit
739654941a

+ 5 - 5
dashboard/src/pages/studio/channel/index.tsx

@@ -10,11 +10,11 @@ const Widget = () => {
 	return (
 		<Layout>
 			<Layout>
-				<LeftSider selectedKeys="channel" />
-				<Content style={styleStudioContent}>
-					<Outlet />
-				</Content>
-			</Layout>
+      <LeftSider selectedKeys="channel" />
+      <Content style={styleStudioContent}>
+        <Outlet />
+      </Content>
+    </Layout>
 		</Layout>
 	);
 };

+ 7 - 7
dashboard/src/pages/studio/dict/index.tsx

@@ -7,14 +7,14 @@ import { styleStudioContent } from "../style";
 const { Content } = Layout;
 
 const Widget = () => {
-	return (
-		<Layout>
+  return (
+    <Layout>
 			<Layout>
-				<LeftSider selectedKeys="userdict" />
-				<Content style={styleStudioContent}>
-					<Outlet />
-				</Content>
-			</Layout>
+      <LeftSider selectedKeys="userdict" />
+      <Content style={styleStudioContent}>
+        <Outlet />
+      </Content>
+    </Layout>
 		</Layout>
 	);
 };