Skip to content

Commit 282b838

Browse files
vogievetskyasdf2014
authored andcommitted
fix home view tabs (#8938)
1 parent 4a9da3f commit 282b838

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web-console/src/views/home-view/supervisors-card/__snapshots__/supervisors-card.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`supervisors card matches snapshot 1`] = `
44
<a
55
class="home-view-card supervisors-card"
6-
href="#tasks"
6+
href="#ingestion"
77
>
88
<div
99
class="bp3-card bp3-interactive bp3-elevation-0"

web-console/src/views/home-view/supervisors-card/supervisors-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ FROM sys.supervisors`,
104104
return (
105105
<HomeViewCard
106106
className="supervisors-card"
107-
href={'#tasks'}
107+
href={'#ingestion'}
108108
icon={IconNames.LIST_COLUMNS}
109109
title={'Supervisors'}
110110
loading={supervisorCountLoading}

web-console/src/views/home-view/tasks-card/__snapshots__/tasks-card.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`tasks card matches snapshot 1`] = `
44
<a
55
class="home-view-card tasks-card"
6-
href="#tasks"
6+
href="#ingestion"
77
>
88
<div
99
class="bp3-card bp3-interactive bp3-elevation-0"

web-console/src/views/home-view/tasks-card/tasks-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ GROUP BY 1`,
118118
return (
119119
<HomeViewCard
120120
className="tasks-card"
121-
href={'#tasks'}
121+
href={'#ingestion'}
122122
icon={IconNames.GANTT_CHART}
123123
title={'Tasks'}
124124
loading={taskCountLoading}

0 commit comments

Comments
 (0)