Skip to content

Commit

Permalink
fix: prop name
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld committed Nov 29, 2024
1 parent 7c76084 commit 9b52b2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/runs/[id]/useDag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function useDag() {
const realNodes = useMemo(() => {
return extractExistingNodes(
(pipelineRun.data?.metadata?.steps as StepDict) ?? {},
(pipelineRun.data?.metadata?.steps_substitutions as Record<string, Record<string, string>>) ||
(pipelineRun.data?.metadata?.step_substitutions as Record<string, Record<string, string>>) ||
{}
);
}, [pipelineRun.data?.metadata?.steps]);
Expand Down
8 changes: 1 addition & 7 deletions src/types/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4034,8 +4034,6 @@ export type components = {
labels?: {
[key: string]: unknown;
} | null;
/** The path to the component spec used for mlstacks deployments. */
component_spec_path?: string | null;
/** The service connector linked to this stack component. */
connector?: string | null;
};
Expand Down Expand Up @@ -4104,8 +4102,6 @@ export type components = {
labels?: {
[key: string]: unknown;
} | null;
/** The path to the component spec used for mlstacks deployments. */
component_spec_path?: string | null;
/**
* Connector Resource Id
* @description The ID of a specific resource instance to gain access to through the connector
Expand Down Expand Up @@ -4143,8 +4139,6 @@ export type components = {
labels?: {
[key: string]: unknown;
} | null;
/** The path to the component spec used for mlstacks deployments. */
component_spec_path?: string | null;
/** The service connector linked to this stack component. */
connector?: string | null;
};
Expand Down Expand Up @@ -6407,7 +6401,7 @@ export type components = {
*/
is_templatable?: boolean;
/** Substitutions used in the step runs of this pipeline run. */
steps_substitutions?: {
step_substitutions?: {
[key: string]: unknown;
};
};
Expand Down

0 comments on commit 9b52b2b

Please sign in to comment.