fix home view tabs (#8938)

This commit is contained in:
Vadim Ogievetsky 2019-11-25 20:21:32 -08:00 committed by Benedict Jin
parent 4a9da3f3fc
commit 282b838b3f
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
exports[`supervisors card matches snapshot 1`] = `
<a
class="home-view-card supervisors-card"
href="#tasks"
href="#ingestion"
>
<div
class="bp3-card bp3-interactive bp3-elevation-0"

View File

@ -104,7 +104,7 @@ FROM sys.supervisors`,
return (
<HomeViewCard
className="supervisors-card"
href={'#tasks'}
href={'#ingestion'}
icon={IconNames.LIST_COLUMNS}
title={'Supervisors'}
loading={supervisorCountLoading}

View File

@ -3,7 +3,7 @@
exports[`tasks card matches snapshot 1`] = `
<a
class="home-view-card tasks-card"
href="#tasks"
href="#ingestion"
>
<div
class="bp3-card bp3-interactive bp3-elevation-0"

View File

@ -118,7 +118,7 @@ GROUP BY 1`,
return (
<HomeViewCard
className="tasks-card"
href={'#tasks'}
href={'#ingestion'}
icon={IconNames.GANTT_CHART}
title={'Tasks'}
loading={taskCountLoading}