From 0901f48e826b4f0284e780e60741228acabe41cf Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Sun, 17 Feb 2019 12:02:54 +0100 Subject: [PATCH] Change order of Graph and Table tabs Signed-off-by: Julius Volz --- src/App.css | 2 +- src/Panel.tsx | 36 ++++++++++++++++++------------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/App.css b/src/App.css index 9a4fe38365..bc41479a15 100644 --- a/src/App.css +++ b/src/App.css @@ -11,7 +11,7 @@ body { } .expression-input textarea { - font-family: Menlo,Monaco,Consolas,'Courier New',monospace; + /* font-family: Menlo,Monaco,Consolas,'Courier New',monospace; */ resize: none; } diff --git a/src/Panel.tsx b/src/Panel.tsx index 24706adb30..7a6b44e88a 100644 --- a/src/Panel.tsx +++ b/src/Panel.tsx @@ -234,14 +234,6 @@ class Panel extends Component { + + {this.props.options.type === 'table' && + <> +
+ +
+ + + } +
{this.props.options.type === 'graph' && <> @@ -270,16 +280,6 @@ class Panel extends Component { } - - {this.props.options.type === 'table' && - <> -
- -
- - - } -