diff --git a/web/src/components/Changes/Changes.module.scss b/web/src/components/Changes/Changes.module.scss index 764c514ba..c20028a45 100644 --- a/web/src/components/Changes/Changes.module.scss +++ b/web/src/components/Changes/Changes.module.scss @@ -8,10 +8,6 @@ padding: var(--spacing-medium) 0 !important; background-color: var(--white) !important; z-index: 2; - - .hideButton { - visibility: hidden; - } } .diffStatsLabel { diff --git a/web/src/components/Changes/Changes.module.scss.d.ts b/web/src/components/Changes/Changes.module.scss.d.ts index a34a38536..fb645450b 100644 --- a/web/src/components/Changes/Changes.module.scss.d.ts +++ b/web/src/components/Changes/Changes.module.scss.d.ts @@ -3,7 +3,6 @@ declare const styles: { readonly wrapper: string readonly header: string - readonly hideButton: string readonly diffStatsLabel: string readonly main: string readonly enableDiffLineBreaks: string diff --git a/web/src/components/Changes/Changes.tsx b/web/src/components/Changes/Changes.tsx index c964fd103..28c9a3a86 100644 --- a/web/src/components/Changes/Changes.tsx +++ b/web/src/components/Changes/Changes.tsx @@ -17,6 +17,7 @@ import type { TypesPullReq } from 'services/code' import { PullRequestTabContentWrapper } from '../../pages/PullRequest/PullRequestTabContentWrapper' import { ChangesDropdown } from './ChangesDropdown' import { DiffViewConfiguration } from './DiffViewConfiguration' +import { ReviewDecisionButton } from './ReviewDecisionButton/ReviewDecisionButton' import css from './Changes.module.scss' const STICKY_TOP_POSITION = 64 @@ -138,11 +139,11 @@ export const Changes: React.FC = ({ )} -