Skip to content

Commit

Permalink
fix: 11397 add missing className (#11400)
Browse files Browse the repository at this point in the history
* chore: 11397 update validation and move button

* fix: add missing classname
  • Loading branch information
plittlewood-rpt authored Aug 20, 2024
1 parent feb7864 commit 9cf894f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exports[`NetworkPage renders and matches a snapshot 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -156,7 +156,7 @@ exports[`NetworkPage renders and matches a snapshot 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exports[`Network should match a snapshot with no rules 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -156,7 +156,7 @@ exports[`Network should match a snapshot with no rules 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -333,7 +333,7 @@ exports[`Network should match a snapshot with rules 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -611,7 +611,7 @@ exports[`Network should match a snapshot with rules 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -946,7 +946,7 @@ exports[`Network should match a snapshot with rules loading 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down Expand Up @@ -1039,7 +1039,7 @@ exports[`Network should match a snapshot with rules loading 1`] = `
New Network Rule
</mock-styled.button>
<mock-styled.button
classname="el-intent-primary"
classname="el-mb5 el-intent-primary"
disabled="false"
>
<mock-styled.div />
Expand Down
2 changes: 1 addition & 1 deletion packages/data-warehouse/src/components/network/network.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Network: FC = () => {
<Button className={elMb5} intent="primary" onClick={openModal}>
New Network Rule
</Button>
<Button intent="primary" onClick={openModalBi} disabled={modalIsOpenBi}>
<Button className={elMb5} intent="primary" onClick={openModalBi} disabled={modalIsOpenBi}>
I Use PowerBI
</Button>
<Button
Expand Down

0 comments on commit 9cf894f

Please sign in to comment.