Changed folders
This commit is contained in:
parent
dc29bb4b3d
commit
f69aa2d70f
9 changed files with 5 additions and 5 deletions
|
|
@ -21,7 +21,7 @@ import {
|
||||||
LANGFLOW_SUPPORTED_TYPES,
|
LANGFLOW_SUPPORTED_TYPES,
|
||||||
TOOLTIP_EMPTY,
|
TOOLTIP_EMPTY,
|
||||||
} from "../../../../constants/constants";
|
} from "../../../../constants/constants";
|
||||||
import OutputModal from "../../../../customNodes/genericNode/components/outputModal";
|
import OutputModal from "../outputModal";
|
||||||
import { Case } from "../../../../shared/components/caseComponent";
|
import { Case } from "../../../../shared/components/caseComponent";
|
||||||
import useFlowStore from "../../../../stores/flowStore";
|
import useFlowStore from "../../../../stores/flowStore";
|
||||||
import useFlowsManagerStore from "../../../../stores/flowsManagerStore";
|
import useFlowsManagerStore from "../../../../stores/flowsManagerStore";
|
||||||
|
|
@ -430,7 +430,7 @@ export default function ParameterComponent({
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
name={name}
|
name={name}
|
||||||
data={data.node?.template[name]}
|
data={data.node?.template[name]!}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{data.node?.template[name]?.refresh_button && (
|
{data.node?.template[name]?.refresh_button && (
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@ import {
|
||||||
STATUS_BUILDING,
|
STATUS_BUILDING,
|
||||||
} from "../../constants/constants";
|
} from "../../constants/constants";
|
||||||
import { BuildStatus } from "../../constants/enums";
|
import { BuildStatus } from "../../constants/enums";
|
||||||
import { countHandlesFn } from "../../customNodes/helpers/count-handles";
|
import { countHandlesFn } from "../helpers/count-handles";
|
||||||
import { getSpecificClassFromBuildStatus } from "../../customNodes/helpers/get-class-from-build-status";
|
import { getSpecificClassFromBuildStatus } from "../helpers/get-class-from-build-status";
|
||||||
import NodeToolbarComponent from "../../pages/FlowPage/components/nodeToolbarComponent";
|
import NodeToolbarComponent from "../../pages/FlowPage/components/nodeToolbarComponent";
|
||||||
import useAlertStore from "../../stores/alertStore";
|
import useAlertStore from "../../stores/alertStore";
|
||||||
import { useDarkStore } from "../../stores/darkStore";
|
import { useDarkStore } from "../../stores/darkStore";
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ export type InputGlobalComponentType = {
|
||||||
onChange: (value: string) => void;
|
onChange: (value: string) => void;
|
||||||
setDb: (value: boolean) => void;
|
setDb: (value: boolean) => void;
|
||||||
name: string;
|
name: string;
|
||||||
data: NodeDataType;
|
data: TemplateVariableType;
|
||||||
editNode?: boolean;
|
editNode?: boolean;
|
||||||
playgroundDisabled?: boolean;
|
playgroundDisabled?: boolean;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue