Changed folders

This commit is contained in:
Lucas Oliveira 2024-06-07 12:04:28 -03:00
commit f69aa2d70f
9 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@ import {
LANGFLOW_SUPPORTED_TYPES,
TOOLTIP_EMPTY,
} from "../../../../constants/constants";
import OutputModal from "../../../../customNodes/genericNode/components/outputModal";
import OutputModal from "../outputModal";
import { Case } from "../../../../shared/components/caseComponent";
import useFlowStore from "../../../../stores/flowStore";
import useFlowsManagerStore from "../../../../stores/flowsManagerStore";
@ -430,7 +430,7 @@ export default function ParameterComponent({
});
}}
name={name}
data={data.node?.template[name]}
data={data.node?.template[name]!}
/>
</div>
{data.node?.template[name]?.refresh_button && (

View file

@ -12,8 +12,8 @@ import {
STATUS_BUILDING,
} from "../../constants/constants";
import { BuildStatus } from "../../constants/enums";
import { countHandlesFn } from "../../customNodes/helpers/count-handles";
import { getSpecificClassFromBuildStatus } from "../../customNodes/helpers/get-class-from-build-status";
import { countHandlesFn } from "../helpers/count-handles";
import { getSpecificClassFromBuildStatus } from "../helpers/get-class-from-build-status";
import NodeToolbarComponent from "../../pages/FlowPage/components/nodeToolbarComponent";
import useAlertStore from "../../stores/alertStore";
import { useDarkStore } from "../../stores/darkStore";

View file

@ -84,7 +84,7 @@ export type InputGlobalComponentType = {
onChange: (value: string) => void;
setDb: (value: boolean) => void;
name: string;
data: NodeDataType;
data: TemplateVariableType;
editNode?: boolean;
playgroundDisabled?: boolean;
};