diff --git a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx index aadc0c6e6..2c94aa205 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx @@ -98,7 +98,6 @@ export default function ParameterComponent({ const groupedObj = groupByFamily(myData, tooltipTitle, left, data.type); refNumberComponents.current = groupedObj[0]?.type?.length; - console.log(refNumberComponents); refHtml.current = groupedObj.map((item, i) => { const Icon: any = nodeIconsLucide[item.family]; diff --git a/src/frontend/src/index.css b/src/frontend/src/index.css index 2754e5335..0c8aa9ca2 100644 --- a/src/frontend/src/index.css +++ b/src/frontend/src/index.css @@ -1066,4 +1066,19 @@ The cursor: default; property value restores the browser's default cursor style @apply max-w-[30vw] max-h-[20vh] overflow-auto } + .ace-editor-arrangement { + @apply flex-max-width h-full flex-col transition-all + } + .ace-editor { + @apply h-full w-full rounded-lg border-[1px] border-border custom-scroll + } + .ace-editor-save-btn { + @apply flex-max-width h-fit justify-end + } + + .export-modal-save-api { + @apply font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 + } + + } diff --git a/src/frontend/src/modals/EditNodeModal/index.tsx b/src/frontend/src/modals/EditNodeModal/index.tsx index a343bc09b..25e76eaa2 100644 --- a/src/frontend/src/modals/EditNodeModal/index.tsx +++ b/src/frontend/src/modals/EditNodeModal/index.tsx @@ -72,15 +72,16 @@ export default function EditNodeModal({ data }: { data: NodeDataType }) { } } - function changeAdvanced(node): void { - Object.keys(data.node.template).filter((n, i) => { + function changeAdvanced(node) { + Object.keys(data.node.template).map((n, i) => { if (n === node.name) { data.node.template[n].advanced = !data.node.template[n].advanced; } - return true; + return n; }); setNodeValue(!nodeValue); } + const handleOnNewValue = (newValue: any, name) => { data.node.template[name].value = newValue; diff --git a/src/frontend/src/modals/codeAreaModal/index.tsx b/src/frontend/src/modals/codeAreaModal/index.tsx index b38bef5f2..cc0495977 100644 --- a/src/frontend/src/modals/codeAreaModal/index.tsx +++ b/src/frontend/src/modals/codeAreaModal/index.tsx @@ -106,7 +106,7 @@ export default function CodeAreaModal({ onChange={(value) => { setCode(value); }} - className="h-full w-full rounded-lg border-[1px] border-gray-300 custom-scroll dark:border-gray-600" + className="h-full w-full rounded-lg border-[1px] border-border custom-scroll" />