From 345d1365901bb32d346768a5f89896cfc0b1686b Mon Sep 17 00:00:00 2001 From: Gustavo Lelis Date: Tue, 7 Apr 2020 17:16:11 -0300 Subject: [PATCH] Small fixes --- platform/ui/src/components/SidePanel/SidePanel.jsx | 2 +- platform/ui/src/views/Viewer/Viewer.js | 12 ++++++++---- platform/ui/src/views/Viewer/Viewer.mdx | 12 ++++++++---- platform/viewer/src/App.js | 4 ++-- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/platform/ui/src/components/SidePanel/SidePanel.jsx b/platform/ui/src/components/SidePanel/SidePanel.jsx index 6e2e4c092..2d2fa9ceb 100644 --- a/platform/ui/src/components/SidePanel/SidePanel.jsx +++ b/platform/ui/src/components/SidePanel/SidePanel.jsx @@ -67,7 +67,7 @@ const SidePanel = ({ onClick={() => { setIsOpen(false); }} - className="flex flex-row items-center border-b w-100 border-secondary-main h-12" + className="flex flex-row items-center border-b-2 w-100 border-secondary-main h-12" > { componentLabel="Studies" defaultIsOpen={false} > -
LEFT SIDE PANE CONTENT
+
+ panel placeholder +
-
+
CONTENT
{ iconName="list-bullets" iconLabel="Measure" componentLabel="Measurements" - defaultIsOpen={true} + defaultIsOpen={false} > -
RIGHT SIDE PANEL CONTENT
+
+ panel placeholder +
diff --git a/platform/ui/src/views/Viewer/Viewer.mdx b/platform/ui/src/views/Viewer/Viewer.mdx index f8f46f707..acc9db7e9 100644 --- a/platform/ui/src/views/Viewer/Viewer.mdx +++ b/platform/ui/src/views/Viewer/Viewer.mdx @@ -27,9 +27,11 @@ import { NavBar, SidePanel, Svg } from '@ohif/ui'; componentLabel="Studies" defaultIsOpen={false} > -
LEFT SIDE PANE CONTENT
+
+ panel placeholder +
-
+
CONTENT
-
RIGHT SIDE PANEL CONTENT
+
+ panel placeholder +
diff --git a/platform/viewer/src/App.js b/platform/viewer/src/App.js index 8c0e4f984..5cf93cc9d 100644 --- a/platform/viewer/src/App.js +++ b/platform/viewer/src/App.js @@ -1,12 +1,12 @@ import React from 'react'; -import { ThemeWrapper, Viewer } from '@ohif/ui'; +import { ThemeWrapper } from '@ohif/ui'; import ConnectedStudyList from './connectedComponents/ConnectedStudyList'; const App = () => { return ( - + ); };