Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow/www/static/js/grid/ResetRoot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ResetRoot = () => (
variant="outline"
href={url}
colorScheme="blue"
mr={2}
mx={2}
title="Reset root to show the whole DAG"
>
Reset Root
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const LinkButton = ({ children, ...rest }) => (
);

const Nav = ({
taskId, executionDate, operator, isMapped,
runId, taskId, executionDate, operator, isMapped,
}) => {
const params = new URLSearchParams({
task_id: taskId,
Expand All @@ -68,6 +68,8 @@ const Nav = ({
}).toString();

const filterParams = new URLSearchParams({
task_id: taskId,
dag_run_id: runId,
base_date: baseDate,
num_runs: numRuns,
root: taskId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ const TaskInstance = ({ taskId, runId }) => {
{!isGroup && (
<TaskNav
taskId={taskId}
runId={runId}
isMapped={isMapped}
executionDate={executionDate}
operator={operator}
Expand Down