Skip to content
Merged
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
023d9a5
8821: refactor file selection components
paulo-filho-ctr Dec 15, 2025
778d775
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 16, 2025
b823db6
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
0473acd
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
bb4562e
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
d2cc034
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
50166de
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
6baee86
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Dec 17, 2025
ae20194
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
dca30da
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 17, 2025
eadb045
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 18, 2025
0edcd42
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Dec 18, 2025
e4027ac
Merge branch '8821-refactor-file-selection-components' of github.com:…
paulo-filho-ctr Dec 18, 2025
28de2c6
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 18, 2025
4050faf
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 18, 2025
142a71b
8821: add cypress tests to file selection components
paulo-filho-ctr Dec 18, 2025
d962b44
8821: add cypress tests to file selection components from test
paulo-filho-ctr Dec 19, 2025
ebb856b
8821: add unit tests to increase test coverage
paulo-filho-ctr Dec 19, 2025
393fa07
Merge remote-tracking branch 'origin/staging' into 8821-refactor-file…
paulo-filho-ctr Dec 19, 2025
7fce663
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Dec 19, 2025
dba9112
8821: upload button is available
paulo-filho-ctr Jan 12, 2026
9fff08b
8821: merge test into branch
paulo-filho-ctr Jan 12, 2026
e5de178
8821: update cypress test
paulo-filho-ctr Jan 12, 2026
68853d7
8821: scan batch previewer can delete upload pdf
paulo-filho-ctr Jan 14, 2026
962d428
8821: scan only deprecated
paulo-filho-ctr Jan 15, 2026
a36db49
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Jan 15, 2026
a1ca04c
8821: document preview update
paulo-filho-ctr Jan 20, 2026
e87624d
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Jan 20, 2026
0fb3774
8821: format
paulo-filho-ctr Jan 21, 2026
c0455c5
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Jan 26, 2026
76f2948
8821: clears upload state when file is corrupt
paulo-filho-ctr Jan 26, 2026
9ab2e54
8821: fix edit attachment upload blank page
paulo-filho-ctr Feb 9, 2026
7060b25
8821: fix edit attachment iframe
paulo-filho-ctr Feb 10, 2026
faad557
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Feb 10, 2026
7b68022
8821: scan radio button does not display file uploader
paulo-filho-ctr Feb 10, 2026
e2a84f3
8821: add test coverage
paulo-filho-ctr Feb 11, 2026
564e7e4
8821: small fix
paulo-filho-ctr Feb 11, 2026
1ec335a
8821: small fix based on copilot suggestions
paulo-filho-ctr Feb 11, 2026
2a9d9e4
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Feb 12, 2026
66840b8
8821: styles in tailwind
paulo-filho-ctr Feb 13, 2026
5ad1fd0
8821: styles in tailwind
paulo-filho-ctr Feb 17, 2026
e38e090
Merge branch 'staging' into 8821-refactor-file-selection-components
paulo-filho-ctr Feb 20, 2026
4127189
8821: remove bold style from the Petition header
paulo-filho-ctr Feb 26, 2026
0eecf0e
8821: remove bold style from the Petition header
paulo-filho-ctr Feb 26, 2026
4e6b644
8821: add custom tailwind text size
paulo-filho-ctr Feb 26, 2026
e7cfa79
8821: tailwind does not support the styling without breaking the ui
paulo-filho-ctr Feb 26, 2026
688c048
8821: tailwind does not support the styling without breaking the ui
paulo-filho-ctr Feb 26, 2026
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
10 changes: 5 additions & 5 deletions web-client/src/views/PetitionQc/PetitionQc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const PetitionQc = connect({}, function PetitionQc() {
return (
<>
<CaseDetailHeader />
<section className="DocumentDetail tw:max-w-[1440px] tw:mx-auto tw:px-4">
<section className="usa-section grid-container DocumentDetail">
<h2
className="tw:mt-0 tw:mb-4 tw:text-xxxl tw:font-bold"
data-testid="petition-qc-page-heading"
Expand All @@ -19,12 +19,12 @@ export const PetitionQc = connect({}, function PetitionQc() {
</h2>
<SuccessNotification />
<ErrorNotification />
<div className="tw:max-w-[1440px] tw:mx-auto tw:px-0">
<div className="tw:flex tw:flex-row tw:gap-4">
<div className="tw:flex-5 tw:min-w-0">
<div className="grid-container padding-x-0">
<div className="grid-row grid-gap">
<div className="grid-col-5">
<CaseDetailEdit />
</div>
<div className="tw:flex-7 tw:min-w-0">
<div className="grid-col-7">
<PetitionQcDocumentPreview title="Add Document(s)" />
</div>
</div>
Expand Down
Loading