diff --git a/src/frontend/src/components/dropdownComponent/index.tsx b/src/frontend/src/components/dropdownComponent/index.tsx index 84c036ec4..f4c2ed607 100644 --- a/src/frontend/src/components/dropdownComponent/index.tsx +++ b/src/frontend/src/components/dropdownComponent/index.tsx @@ -63,8 +63,8 @@ export default function Dropdown({ diff --git a/src/frontend/src/components/inputFileComponent/index.tsx b/src/frontend/src/components/inputFileComponent/index.tsx index 505515bf5..29a3dd128 100644 --- a/src/frontend/src/components/inputFileComponent/index.tsx +++ b/src/frontend/src/components/inputFileComponent/index.tsx @@ -91,6 +91,7 @@ export default function InputFileComponent({ input.click(); }; + return (
@@ -98,8 +99,10 @@ export default function InputFileComponent({ onClick={handleButtonClick} className={ editNode - ? "input-edit-node " + "input-primary " - : "input-primary " + (disabled ? "input-disable " : "") + ? " input-edit-node " + " input-dialog " + : (disabled ? " input-disable " : "") + + " input-primary " + + " input-dialog " } > {myValue !== "" ? myValue : "No file"} diff --git a/src/frontend/src/modals/genericModal/index.tsx b/src/frontend/src/modals/genericModal/index.tsx index aa3c99774..b0a0ae315 100644 --- a/src/frontend/src/modals/genericModal/index.tsx +++ b/src/frontend/src/modals/genericModal/index.tsx @@ -242,8 +242,7 @@ export default function GenericModal({
- Input Variables:{" "} - {wordsHighlight && wordsHighlight.length == 0 ? "-" : ""} + Input Variables: {wordsHighlight.map((word, index) => (