From 3ed6d2f2d9e09893819b26f2b834849be1c2ff3c Mon Sep 17 00:00:00 2001 From: frikky Date: Mon, 8 Feb 2021 12:01:28 +0100 Subject: [PATCH] Added gomod for orborus --- frontend/src/views/AngularWorkflow.jsx | 38 +++++---- functions/onprem/orborus/go.mod | 19 +++++ functions/onprem/orborus/go.sum | 112 +++++++++++++++++++++++++ 3 files changed, 152 insertions(+), 17 deletions(-) create mode 100644 functions/onprem/orborus/go.mod create mode 100644 functions/onprem/orborus/go.sum diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index 99073bc3..394331aa 100644 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -3841,6 +3841,21 @@ const AngularWorkflow = (props) => { zIndex: 1000, } + const textFieldStyle = { + backgroundColor: inputColor, + borderRadius: borderRadius, + } + + + const innerTextfieldStyle = { + color: "white", + minHeight: 50, + marginLeft: "5px", + maxWidth: "95%", + fontSize: "1em", + borderRadius: borderRadius, + } + const appApiView = Object.getOwnPropertyNames(selectedAction).length > 0 ?
@@ -3894,15 +3909,9 @@ const AngularWorkflow = (props) => { Name { value={selectedActionName} fullWidth onChange={setNewSelectedAction} - style={{backgroundColor: inputColor, color: "white", height: 50}} + style={{backgroundColor: inputColor, color: "white", height: 50, borderRadius: borderRadius,}} SelectDisplayProps={{ style: { marginLeft: 10, maxHeight: 200, + borderRadius: borderRadius, } }} > @@ -6120,15 +6130,9 @@ const AngularWorkflow = (props) => {