Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some improvements to Tables and OverviewPage #990

Merged
merged 18 commits into from
Feb 13, 2025
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
da36f84
Add missing footer to Election Report Page
Lionqueen94 Feb 7, 2025
79a57cb
Make sure table linkrow has separate column for the chevron with a se…
Lionqueen94 Feb 7, 2025
a6990f0
Show a message that no elections exist on overview page instead of a …
Lionqueen94 Feb 7, 2025
41ece77
Forgot UserListPage LinkRow change
Lionqueen94 Feb 7, 2025
f58f162
Corrected error logo color in Alert, ProgressList and StatusList and …
Lionqueen94 Feb 7, 2025
2c2435b
Merge branch 'main' into some_small_fixes
Lionqueen94 Feb 7, 2025
2d26841
Make sure there is no empty table when there are no polling stations …
Lionqueen94 Feb 8, 2025
ffba221
Adjusted no elections text, to be expanded in other epic
Lionqueen94 Feb 8, 2025
ce7cbca
Fix test
Lionqueen94 Feb 9, 2025
baf5ca6
Merge branch 'main' into some_small_fixes
Lionqueen94 Feb 10, 2025
9f9e9ea
Rename Table.Column to Table.HeaderCell and undid empty cell for chev…
Lionqueen94 Feb 10, 2025
558485a
Added Footer to OverviewLayout and removed from all child routes and …
Lionqueen94 Feb 10, 2025
5fe59c8
Merge branch 'main' into some_small_fixes
Lionqueen94 Feb 10, 2025
9d96510
Merge branch 'main' into some_small_fixes
Lionqueen94 Feb 11, 2025
e72177b
Added separate alert when all polling stations data entries have been…
Lionqueen94 Feb 11, 2025
eecd93d
Merge branch 'main' into some_small_fixes
Lionqueen94 Feb 12, 2025
a06a9ac
Re-added the Footer back to the pages instead of in the Layout, we sh…
Lionqueen94 Feb 12, 2025
20d7838
Moved footer to OverviewPage instead of OverviewLayout to be more con…
Lionqueen94 Feb 12, 2025
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
3 changes: 3 additions & 0 deletions frontend/app/module/election/page/ElectionReportPage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Footer } from "app/component/footer/Footer";

import { useElection, useElectionStatus } from "@kiesraad/api";
import { t, tx } from "@kiesraad/i18n";
import { Button, FormLayout, PageTitle } from "@kiesraad/ui";
Expand Down Expand Up @@ -82,6 +84,7 @@ export function ElectionReportPage() {
</FormLayout.Controls>
</article>
</main>
<Footer />
praseodym marked this conversation as resolved.
Show resolved Hide resolved
</>
);
}