diff --git a/frontend/src/components/LeftSideBar.jsx b/frontend/src/components/LeftSideBar.jsx index 72ec534c..44a294d9 100644 --- a/frontend/src/components/LeftSideBar.jsx +++ b/frontend/src/components/LeftSideBar.jsx @@ -1059,9 +1059,11 @@ const LeftSideBar = ({ userdata, serverside, globalUrl, notifications, }) => { style={{ ...hrefStyle, pointerEvents: userdata?.support ? "auto" : "none", + cursor: "not-allowed", }} > - - */} {selectedApp.versions !== null && selectedApp.versions !== undefined && selectedApp.versions.length > 1 ? ( @@ -1646,7 +1691,6 @@ const ParsedAction = (props) => {
Name { style={{ backgroundColor: theme.palette.inputColor, color: "white", - height: 50, + height: 35, maxWidth: rightsidebarStyle.maxWidth - 80, borderRadius: theme.palette?.borderRadius, }} @@ -2109,7 +2153,7 @@ const ParsedAction = (props) => { ) : null} {selectedAction.authentication_id === "authgroups" && (authGroups === undefined || authGroups === null || authGroups.length === 0) ? - + Create your first Authentication group @@ -2336,7 +2380,7 @@ const ParsedAction = (props) => { fullWidth style={{ backgroundColor: theme.palette.inputColor, - height: 50, + height: 35, borderRadius: theme.palette?.borderRadius, }} onChange={(event, newValue) => { @@ -2491,43 +2535,6 @@ const ParsedAction = (props) => { /> ) : null} - {/*setNewSelectedAction !== undefined ? - - : null*/}
{ title={"Click to learn more about this action"} placement="top" > +
+ {/* + */} } @@ -2726,7 +2742,7 @@ const ParsedAction = (props) => { fullWidth style={{ backgroundColor: theme.palette.inputColor, - height: 50, + height: 35, borderRadius: theme.palette?.borderRadius, }} onChange={(event, newValue) => { @@ -2905,13 +2921,9 @@ const ParsedAction = (props) => { data.value = data.value.join(",") } - if ( - data.value !== undefined && - data.value !== null && - data.value.startsWith("{") && - data.value.endsWith("}") - ) { - multiline = true; + if (data.value !== undefined && data.value !== null && + data.value.startsWith("{") && data.value.endsWith("}")) { + multiline = true } var placeholder = "Value"; @@ -3013,6 +3025,91 @@ const ParsedAction = (props) => { textAlign: "center", }} > + + { + // Set localstorage + localStorage.setItem("hideBody", "true") + + setHideBody(false) + const updatedParameters = selectedActionParameters.map((param) => { + if (param.name === "body") { + return { + ...param, + id: "UNTOGGLED", + } + } + + if (param.description === openApiFieldDesc) { + // Check required fields here + if (selectedAction.required_body_fields !== undefined && selectedAction.required_body_fields !== null && selectedAction.required_body_fields.length > 0) { + // Look for the field name in the required_body_fields + if (selectedAction.required_body_fields.includes(param.name)) { + param.required = true + } else { + param.required = false + } + } + + return { ...param, field_active: true } + } + + return param + }) + + setSelectedActionParameters(updatedParameters) + }} + /> + { + localStorage.setItem("hideBody", "false") + setHideBody(true) + // Make sure the body field is shown + const updatedParameters = selectedActionParameters.map((param) => { + if (param.name === "body") { + return { + ...param, + id: "TOGGLED", + } + } + + if (param.description === openApiFieldDesc) { + return { ...param, field_active: false } + } + + return param + }) + + setSelectedActionParameters(updatedParameters) + }} + /> + + {/* { + */}
- ); + ) var showButtonField = false if (selectedApp.generated === true && data.name === "body") { @@ -3159,7 +3257,7 @@ const ParsedAction = (props) => { description: openApiFieldDesc, example: "", id: "", - multiline: true, + multiline: false, name: tmpitem, options: null, required: isRequired, @@ -3170,7 +3268,7 @@ const ParsedAction = (props) => { variant: "STATIC_VALUE", field_active: true, - autocompleted: true, + autocompleted: false, }); } @@ -3230,7 +3328,8 @@ const ParsedAction = (props) => { tmpitem = "Password" } - multiline = data.name.startsWith("${") && data.name.endsWith("}") ? true : multiline + // No longer multiline for new fields + //multiline = data.name.startsWith("${") && data.name.endsWith("}") ? true : multiline if (data.name === "body") { //console.log("BODY: ", data) @@ -3293,7 +3392,7 @@ const ParsedAction = (props) => { localStorage.setItem("disabled_ui_box", "true") setUiBox("closed") }}> - + Don't show again
@@ -3330,16 +3429,20 @@ const ParsedAction = (props) => { style={{ backgroundColor: theme.palette.inputColor, borderRadius: theme.palette?.borderRadius, + width: "100%", + maxHeight: multiline === true ? undefined : 40, + minHeight: 40, + border: selectedActionParameters[count].required || selectedActionParameters[count].configuration - ? "2px solid #f85a3e" + ? "1px solid #FF8544" : "", - color: "white", - width: "100%", - fontSize: "1em", }} InputProps={{ + style: { + maxHeight: multiline === true ? undefined : 40, + }, disableUnderline: true, endAdornment: hideExtraTypes ? null : ( @@ -3392,7 +3495,7 @@ const ParsedAction = (props) => { ), }} - multiline={data.name.startsWith("${") && data.name.endsWith("}") ? true : multiline} + multiline={multiline} onClick={() => { /* setExpansionModalOpen(false); @@ -3802,7 +3905,7 @@ const ParsedAction = (props) => { ); } else if (data.variant === "STATIC_VALUE") { - staticcolor = "#f85a3e"; + staticcolor = "#FF8544"; } if (data.field_active === false) { @@ -3938,7 +4041,7 @@ const ParsedAction = (props) => { ); if (exec_text_field !== null) { if (inside) { - exec_text_field.style.border = "2px solid #f85a3e"; + exec_text_field.style.border = "2px solid #FF8544"; } else { exec_text_field.style.border = ""; } @@ -4228,7 +4331,7 @@ const ParsedAction = (props) => { >
@@ -4240,65 +4343,12 @@ const ParsedAction = (props) => { flex: "10", marginTop: "auto", marginBottom: "auto", + color: "#C5C5C5", }} > - {tmpitem} + {tmpitem} {selectedActionParameters[count].required || selectedActionParameters[count].configuration ? "*" : ""}
- {/*selectedActionParameters[count].options !== undefined && selectedActionParameters[count].options !== null && selectedActionParameters[count].options.length > 0 ? null : -
- -
{ - e.preventDefault() - changeActionParameterVariant("STATIC_VALUE", count) - }}> - -
-
-  |  - -
{ - e.preventDefault() - changeActionParameterVariant("ACTION_RESULT", count) - }}> - -
-
-  |  - -
{ - e.preventDefault() - changeActionParameterVariant("WORKFLOW_VARIABLE", count) - }}> - -
-
-
- */} - {/*(selectedActionParameters[count].options !== undefined && selectedActionParameters[count].options !== null && selectedActionParameters[count].options.length > 0 && selectedActionParameters[count].required === true && selectedActionParameters[count].unique_toggled !== undefined) || hideExtraTypes ? null : -
- -
{}}> - { - //console.log("CHECKED!: ", selectedActionParameters[count]) - selectedActionParameters[count].unique_toggled = !selectedActionParameters[count].unique_toggled - selectedAction.parameters[count].unique_toggled = selectedActionParameters[count].unique_toggled - setSelectedActionParameters(selectedActionParameters) - setSelectedAction(selectedAction) - setUpdate(Math.random()) - }} - name="requires_unique" - /> -
-
-
- */} {datafield} {/*shufflecode*/} @@ -4338,7 +4388,7 @@ const ParsedAction = (props) => { open={showAutocomplete} style={{ color: "white", - height: 50, + height: 35, marginTop: 2, borderRadius: theme.palette?.borderRadius, }} diff --git a/frontend/src/theme.jsx b/frontend/src/theme.jsx index 54e7a790..87aa89e1 100644 --- a/frontend/src/theme.jsx +++ b/frontend/src/theme.jsx @@ -4,13 +4,13 @@ import { createTheme, adaptV4Theme } from "@mui/material/styles"; const theme = createTheme(adaptV4Theme({ palette: { theme: "dark", - main: "#F86743", + main: "#FF8544", primary: { - main: "#F86743", + main: "#FF8544", contrastText: "#ffffff", }, secondary: { - main: "#e8eaf6", + main: "rgba(255,255,255,0.7)", contrastText: "#000000", }, text: { @@ -21,7 +21,8 @@ const theme = createTheme(adaptV4Theme({ inputColor: "rgba(39,41,45,1)", surfaceColor: "#27292d", - platformColor: "#1c1c1d", + //platformColor: "#1c1c1d", + platformColor: "#212121", backgroundColor: "#1a1a1a", green: "#5cc879", @@ -45,10 +46,13 @@ const theme = createTheme(adaptV4Theme({ overflowX: "auto", }, textFieldStyle: { - backgroundColor: "#383B40", + backgroundColor: "#212121", borderRadius: 5, }, innerTextfieldStyle: { + height: 40, + fontSize: 16, + backgroundColor: "#212121", // Removed since upgrading to mui 18 //color: "white", //minHeight: 50, diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index 0b713135..c3e8d89d 100755 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -360,11 +360,11 @@ export function removeParam(key, sourceURL) { const useStyles = makeStyles({ notchedOutline: { - borderColor: "#f85a3e !important", + borderColor: "#FF8544 !important", }, root: { "& .MuiAutocomplete-listbox": { - border: "2px solid #f85a3e", + border: "2px solid #FF8544", color: "white", fontSize: 18, "& li:nth-child(even)": { @@ -4463,7 +4463,7 @@ const releaseToConnectLabel = "Release to Connect" const elementMouseIsOver = document.elementFromPoint(x, y); if (elementMouseIsOver !== undefined && elementMouseIsOver !== null) { - // Color for #f85a3e translated to rgb + // Color for #FF8544 translated to rgb const newBorder = "3px solid rgb(248, 90, 62)"; if ( elementMouseIsOver.style.border !== newBorder && @@ -8739,6 +8739,11 @@ const releaseToConnectLabel = "Release to Connect" if (cy.edgehandles !== undefined) { cy.edgehandles({ handleNodes: (el) => { + // Check of length of el.data() is 1 + if (el.data() === undefined || Object.keys(el.data()).length === 1) { + return false + } + if (el.isNode() && el.data("buttonType") != "ACTIONSUGGESTION" && el.data("name") != "switch" && @@ -9231,7 +9236,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href="https://shuffler.io/docs/workflows#workflow_variables" target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > Workflow variables? @@ -9281,7 +9286,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href="https://shuffler.io/docs/workflows#execution_variables" target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > Runtime variables? @@ -11049,8 +11054,6 @@ const releaseToConnectLabel = "Release to Connect" results = results.filter((data) => data.type === "ACTION" || data.app_name === "Shuffle Workflow" || data.app_name === "User Input") results.push({ label: "Execution Argument", type: "INTERNAL" }) - console.log(results) - return results } @@ -11383,7 +11386,7 @@ const releaseToConnectLabel = "Release to Connect" width: "17px", height: "17px", borderRadius: 17 / 2, - backgroundColor: "#f85a3e", + backgroundColor: "#FF8544", marginRight: "10px", }} /> @@ -11420,7 +11423,7 @@ const releaseToConnectLabel = "Release to Connect" open={showAutocomplete} fullWidth style={{ - borderBottom: `1px solid #f85a3e`, + borderBottom: `1px solid #FF8544`, color: "white", height: 50, marginTop: 2, @@ -11450,7 +11453,7 @@ const releaseToConnectLabel = "Release to Connect" ); if (exec_text_field !== null) { if (inside) { - exec_text_field.style.border = "2px solid #f85a3e"; + exec_text_field.style.border = "2px solid #FF8544"; } else { exec_text_field.style.border = ""; } @@ -11598,6 +11601,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", minWidth: isMobile ? "90%" : 800, border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} onClose={() => { @@ -11719,6 +11725,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", minWidth: isMobile ? "90%" : 650, border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} onClose={() => { @@ -11930,6 +11939,7 @@ const releaseToConnectLabel = "Release to Connect" padding: 50, paddingBottom: 70, + borderRadius: theme.palette.borderRadius, borderImage: "linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet) 1", }, }} @@ -12034,6 +12044,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", minWidth: isMobile ? "90%" : 800, border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} onClose={() => { @@ -12055,7 +12068,7 @@ const releaseToConnectLabel = "Release to Connect" href="/docs/workflows#conditions" style={{ textDecoration: "none", - color: "#f85a3e", + color: "#FF8544", }} > Learn more @@ -12539,7 +12552,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/workflows#conditions" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are conditions? @@ -13292,7 +13305,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/triggers#subflow" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are subflows? @@ -13414,7 +13427,7 @@ const releaseToConnectLabel = "Release to Connect" target="_blank" style={{ textDecoration: "none", - color: "#f85a3e", + color: "#FF8544", marginLeft: 5, marginTop: 10, }} @@ -13707,7 +13720,7 @@ const releaseToConnectLabel = "Release to Connect" }} open={!!menuPosition} style={{ - border: `2px solid #f85a3e`, + border: `2px solid #FF8544`, color: "white", marginTop: 2, }} @@ -13729,7 +13742,7 @@ const releaseToConnectLabel = "Release to Connect" ); if (exec_text_field !== null) { if (inside) { - exec_text_field.style.border = "2px solid #f85a3e"; + exec_text_field.style.border = "2px solid #FF8544"; } else { exec_text_field.style.border = ""; } @@ -14089,7 +14102,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/workflows#comments" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are comments? @@ -14356,7 +14369,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/triggers#webhook" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are webhooks? @@ -14600,7 +14613,7 @@ const releaseToConnectLabel = "Release to Connect" width: "17px", height: "17px", borderRadius: 17 / 2, - backgroundColor: "#f85a3e", + backgroundColor: "#FF8544", marginRight: "10px", }} /> @@ -15084,7 +15097,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/triggers#user_input" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What is the user input trigger? @@ -15471,7 +15484,7 @@ const releaseToConnectLabel = "Release to Connect" })} : -
{ +
{ setEditWorkflowModalOpen(true) toast.info("Expand and scroll down to add input-questions") }}> @@ -15498,7 +15511,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/triggers#pipelines" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are pipelines? @@ -15760,7 +15773,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href="https://shuffler.io/docs/triggers#schedule" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What are schedules? @@ -15864,12 +15877,12 @@ const releaseToConnectLabel = "Release to Connect" width: "17px", height: "17px", borderRadius: 17 / 2, - backgroundColor: "#f85a3e", + backgroundColor: "#FF8544", marginRight: "10px", }} />
- When to start: {isCloud || selectedTrigger?.environment === "cloud" ? Cron formatting : "every X second"} + When to start: {isCloud || selectedTrigger?.environment === "cloud" ? Cron formatting : "every X second"}
@@ -15990,7 +16003,7 @@ const releaseToConnectLabel = "Release to Connect" const cytoscapeViewWidths = isMobile ? 50 : 950; const bottomBarStyle = { - position: "fixed", + position: "absolute", transition: "all 0.3s ease", minWidth: windowWidth < 1600 && leftSideBarOpenByClick ? 800 : cytoscapeViewWidths, maxWidth: windowWidth < 1600 && leftSideBarOpenByClick ? 800 : cytoscapeViewWidths, @@ -15999,14 +16012,14 @@ const releaseToConnectLabel = "Release to Connect" zIndex: 10, transform: isMobile ? `translateX(20px)` - : `translateX(${leftSideBarOpenByClick ? 340 : 330}px)`, + : `translateX(280px)`, top: isMobile ? appBarSize + 55 : undefined, bottom: isMobile ? undefined : 0, }; const topBarStyle = { position: "fixed", - top: isMobile ? 30 : appBarSize - 20, + top: isMobile ? 30 : 35, pointerEvents: "none", transition: "transform 0.3s ease", transform: isMobile @@ -16032,7 +16045,7 @@ const releaseToConnectLabel = "Release to Connect" return (
- + {/* + */}

Warning: Change { toast("Changing to correct organisation. Please wait a few seconds.") @@ -16761,12 +16775,12 @@ const releaseToConnectLabel = "Release to Connect" style={{ border: "1px solid rgba(255,255,255,0.1)", position: "absolute", - bottom: 140, - left: leftSideBarOpenByClick ? 620 : 435, + bottom: 100, + left: leftSideBarOpenByClick ? 630 : 445, color: "white", padding: 10, borderRadius: theme.palette?.borderRadius, - transition: "left 0.3s ease, top 0.3s ease", + transition: "left 0.3s ease, top 0.3s ease", }} > @@ -16787,9 +16801,9 @@ const releaseToConnectLabel = "Release to Connect" - + {/**/} - Workflow Issues: {workflow.errors.length} + {workflow.errors.length} Workflow Issue{workflow.errors.length > 1 ? "s" : ""} { // Find it in cytoscape if (cy === undefined || cy === null) { @@ -16976,7 +16990,7 @@ const releaseToConnectLabel = "Release to Connect" top: "40%", width: 70, height: 235, - border: "1px solid #f85a3e", + border: "1px solid #FF8544", cursor: "pointer", borderRadius: theme.palette?.borderRadius, padding: 10, @@ -17084,7 +17098,8 @@ const releaseToConnectLabel = "Release to Connect" return null; } - const boxSize = isMobile ? 50 : 100; + const buttonHeights = 45 + const boxSize = buttonHeights+5 const executionButton = executionRunning ? ( @@ -17096,7 +17111,7 @@ const releaseToConnectLabel = "Release to Connect" abortExecution(); }} > - + @@ -17107,24 +17122,23 @@ const releaseToConnectLabel = "Release to Connect" workflow.public || executionRequestStarted } - style={{ height: boxSize, width: boxSize }} + style={{ height: boxSize, width: boxSize, backgroundColor: green, }} color="primary" variant="contained" onClick={() => { executeWorkflow(executionText, workflow.start, lastSaved); }} > - + ) return (
- {executionButton}
- {isMobile || workflow.public ? null : ( + + {executionButton} { setExecutionText(e.target.value); }} + // Start adornment + inputProps={{ + style: { + height: 18, + }, + }} /> - )} + {/*userdata.avatar === creatorProfile.github_avatar ? null :*/} - + + - {workflow.public || userdata.support == true ? ( + {workflow.public || userdata.support == true ? - ) : null} + : null} + + {/* + */} - - - - - + + {workflow.configuration !== null && workflow.configuration !== undefined && workflow.configuration.exit_on_error !== undefined ? ( @@ -17353,9 +17366,9 @@ const releaseToConnectLabel = "Release to Connect" + + + + + + + +
@@ -18483,6 +18519,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", fontSize: 18, borderLeft: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -18804,7 +18843,7 @@ const releaseToConnectLabel = "Release to Connect" {lastExecution === data.execution_id ? ( Env      - { + { window.open("/admin?tab=locations", "_blank") }}> {executionData.workflow.actions[0].environment} @@ -19131,7 +19170,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href={`/admin?tab=app_auth`} target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > Auth Group '{executionData.authgroup !== undefined && executionData.authgroup !== null && executionData.authgroup.length > 0 ? `${executionData.authgroup}` : null}' @@ -19141,7 +19180,7 @@ const releaseToConnectLabel = "Release to Connect" executionData.execution_parent.length > 0 ? ( executionData.execution_source === props.match.params.key ? { getWorkflowExecution( props.match.params.key, @@ -19156,7 +19195,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href={`/workflows/${executionData.execution_source}?view=executions&execution_id=${executionData.execution_parent}`} target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > Parent Workflow @@ -19167,7 +19206,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href={`/forms/${executionData.workflow.id}`} target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > Form @@ -19613,7 +19652,7 @@ const releaseToConnectLabel = "Release to Connect" data.action.parameters[0].value === props.match.params.key ? ( { getWorkflowExecution( props.match.params.key, @@ -19630,7 +19669,7 @@ const releaseToConnectLabel = "Release to Connect" target="_blank" style={{ textDecoration: "none", - color: "#f85a3e", + color: "#FF8544", }} onClick={(event) => { }} > @@ -19758,7 +19797,7 @@ const releaseToConnectLabel = "Release to Connect" Action Logs - Logs for an action are not available without an onprem environment with the SHUFFLE_LOGS_DISABLED environment variable set to false: SHUFFLE_LOGS_DISABLED=false. Logs are enabled by default, except in scale mode. + Logs for an action are not available without an onprem environment with the SHUFFLE_LOGS_DISABLED environment variable set to false: SHUFFLE_LOGS_DISABLED=false. Logs are enabled by default, except in scale mode.
) @@ -19839,7 +19878,7 @@ const releaseToConnectLabel = "Release to Connect" variant="body2" style={{ whiteSpace: 'pre-line', - color: showlink ? "#f85a3e" : "white", + color: showlink ? "#FF8544" : "white", cursor: showlink ? "pointer" : "default", }} onClick={(e) => { @@ -20005,7 +20044,7 @@ const releaseToConnectLabel = "Release to Connect" PaperComponent={PaperComponent} aria-labelledby="draggable-dialog-title" disableEnforceFocus={true} - style={{ pointerEvents: "none", zIndex : activeDialog === "result" ? 1200 : 1100 }} + style={{ pointerEvents: "none", zIndex : activeDialog === "result" ? 1200 : 1100, }} hideBackdrop={true} open={codeModalOpen} PaperProps={{ @@ -20019,6 +20058,9 @@ const releaseToConnectLabel = "Release to Connect" overflowY: "auto", overflowX: "hidden", border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -20198,7 +20240,7 @@ const releaseToConnectLabel = "Release to Connect" -
+
{curapp === null ? null : ( )} @@ -20574,7 +20617,10 @@ const releaseToConnectLabel = "Release to Connect" color: "white", border: theme.palette.defaultBorder, maxWidth: isMobile ? bodyWidth - 100 : 800, - minWidth: isMobile ? bodyWidth - 100 : 800, + minWidth: isMobile ? bodyWidth - 100 : 800, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -20589,7 +20635,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" href="https://shuffler.io/docs/workflows#execution_variables" target="_blank" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > here @@ -20751,6 +20797,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", border: theme.palette.defaultBorder, maxWidth: isMobile ? bodyWidth - 100 : "100%", + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -21027,7 +21076,7 @@ const releaseToConnectLabel = "Release to Connect" target="_blank" rel="noopener noreferrer" href="https://shuffler.io/docs/apps#authentication" - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} > What is app authentication? @@ -21195,6 +21244,9 @@ const releaseToConnectLabel = "Release to Connect" color: "white", minWidth: 650, border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -21262,6 +21314,9 @@ const releaseToConnectLabel = "Release to Connect" overflow: "hidden", zIndex: 10012, border: theme.palette.defaultBorder, + + borderRadius: theme.palette.borderRadius, + backgroundColor: "black", }, }} > @@ -21548,7 +21603,7 @@ const releaseToConnectLabel = "Release to Connect" rel="noopener noreferrer" target="_blank" href={selectedMeta.link} - style={{ textDecoration: "none", color: "#f85a3e" }} + style={{ textDecoration: "none", color: "#FF8544" }} >
); - console.log("docs render") - // Padding and zIndex etc set because of footer in cloud. const loadedCheck = (