-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/actualbudget/actual
- Loading branch information
Showing
540 changed files
with
6,139 additions
and
4,964 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: /update-vrt | ||
on: | ||
issue_comment: | ||
types: [ created ] | ||
|
||
permissions: | ||
pull-requests: read | ||
contents: read | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ contains(github.event.comment.body, '/update-vrt') }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
update-vrt: | ||
name: Update VRT | ||
runs-on: ubuntu-latest | ||
if: | | ||
github.event.issue.pull_request && | ||
contains(github.event.comment.body, '/update-vrt') | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.41.1-jammy | ||
steps: | ||
- name: Get PR branch | ||
# Until https://github.com/xt0rted/pull-request-comment-branch/issues/322 is resolved we use the forked version | ||
uses: gotson/pull-request-comment-branch@head-repo-owner-dist | ||
id: comment-branch | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ steps.comment-branch.outputs.head_owner }}/${{ steps.comment-branch.outputs.head_repo }} | ||
ref: ${{ steps.comment-branch.outputs.head_ref }} | ||
- name: Set up environment | ||
uses: ./.github/actions/setup | ||
- name: Wait for Netlify build to finish | ||
id: netlify | ||
env: | ||
COMMIT_SHA: ${{ steps.comment-branch.outputs.head_sha }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./.github/actions/netlify-wait-for-build | ||
- name: Run VRT Tests on Netlify URL | ||
run: yarn vrt --update-snapshots | ||
env: | ||
E2E_START_URL: ${{ steps.netlify.outputs.url }} | ||
- name: Create patch | ||
run: | | ||
git config --system --add safe.directory "*" | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git reset | ||
git add "**/*.png" | ||
if git diff --staged --quiet; then | ||
echo "No changes to commit" | ||
exit 0 | ||
fi | ||
git commit -m "Update VRT" | ||
git format-patch -1 HEAD --stdout > Update-VRT.patch | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: patch | ||
path: Update-VRT.patch | ||
|
||
push-patch: | ||
runs-on: ubuntu-latest | ||
needs: update-vrt | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- name: Get PR branch | ||
# Until https://github.com/xt0rted/pull-request-comment-branch/issues/322 is resolved we use the forked version | ||
uses: gotson/pull-request-comment-branch@head-repo-owner-dist | ||
id: comment-branch | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ steps.comment-branch.outputs.head_owner }}/${{ steps.comment-branch.outputs.head_repo }} | ||
ref: ${{ steps.comment-branch.outputs.head_ref }} | ||
- uses: actions/download-artifact@v4 | ||
continue-on-error: true | ||
with: | ||
name: patch | ||
- name: Apply patch and push | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git apply Update-VRT.patch | ||
git add "**/*.png" | ||
if git diff --staged --quiet; then | ||
echo "No changes to commit" | ||
exit 0 | ||
fi | ||
git commit -m "Update VRT" | ||
git push origin HEAD:${{ steps.comment-branch.outputs.head_ref }} | ||
- name: Add finished reaction | ||
uses: dkershner6/reaction-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commentId: ${{ github.event.comment.id }} | ||
reaction: "rocket" | ||
|
||
add-starting-reaction: | ||
runs-on: ubuntu-latest | ||
if: | | ||
github.event.issue.pull_request && | ||
contains(github.event.comment.body, '/update-vrt') | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: React to comment | ||
uses: dkershner6/reaction-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commentId: ${{ github.event.comment.id }} | ||
reaction: "+1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+1.67 KB
(100%)
...apshots/Accounts-Import-Transactions-import-csv-file-twice-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.02 KB
(100%)
...apshots/Accounts-Import-Transactions-import-csv-file-twice-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.91 KB
(100%)
...apshots/Accounts-Import-Transactions-import-csv-file-twice-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.18 KB
(100%)
...s-Import-Transactions-imports-transactions-from-a-CSV-file-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.19 KB
(100%)
...s-Import-Transactions-imports-transactions-from-a-CSV-file-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.96 KB
(100%)
...s-Import-Transactions-imports-transactions-from-a-CSV-file-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.94 KB
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.98 KB
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.85 KB
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1022 Bytes
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-4-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.04 KB
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-5-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1001 Bytes
(100%)
.../e2e/accounts.test.js-snapshots/Accounts-closes-an-account-6-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+962 Bytes
(100%)
...es-a-new-account-and-views-the-initial-balance-transaction-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+987 Bytes
(100%)
...es-a-new-account-and-views-the-initial-balance-transaction-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1003 Bytes
(100%)
...es-a-new-account-and-views-the-initial-balance-transaction-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-14.6 KB
(65%)
...cking--14404-in-the-page-header-opens-the-month-menu-modal-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15.3 KB
(70%)
...cking--321fd-ed-amount-opens-the-budget-summary-menu-modal-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15.4 KB
(70%)
...cking--4bb70-ed-amount-opens-the-budget-summary-menu-modal-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15.1 KB
(66%)
...cking--6ab37-roup-name-opens-the-category-group-menu-modal-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-27 Bytes
(100%)
...cking--6dbdb-page-header-shows-the-previous-month-s-budget-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15 KB
(67%)
...cking--94a79-roup-name-opens-the-category-group-menu-modal-2-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-16 KB
(69%)
...cking--94a85-ed-amount-opens-the-budget-summary-menu-modal-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-30 Bytes
(100%)
...cking--96ebb-page-header-shows-the-previous-month-s-budget-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-17.2 KB
(66%)
...cking--9e6aa-in-the-page-header-opens-the-budget-page-menu-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15.5 KB
(65%)
...cking--bbde3-roup-name-opens-the-category-group-menu-modal-3-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-14.3 KB
(65%)
...cking--bed18-in-the-page-header-opens-the-month-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.1 KB
(66%)
...cking--ceb3a-in-the-page-header-opens-the-month-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-16.8 KB
(67%)
...cking--d270d-in-the-page-header-opens-the-budget-page-menu-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-38 Bytes
(100%)
...cking--d7184-page-header-shows-the-previous-month-s-budget-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-17.3 KB
(66%)
...cking--fdd57-in-the-page-header-opens-the-budget-page-menu-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.2 KB
(67%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.9 KB
(68%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.6 KB
(67%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-12.8 KB
(72%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.2 KB
(72%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.4 KB
(71%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.1 KB
(63%)
...t-clicking-the-category-name-opens-the-category-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15 KB
(64%)
...t-clicking-the-category-name-opens-the-category-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.4 KB
(62%)
...t-clicking-the-category-name-opens-the-category-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-21 Bytes
(100%)
...udget-Envelope-loads-the-budget-page-with-budgeted-amounts-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(100%)
...udget-Envelope-loads-the-budget-page-with-budgeted-amounts-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-20 Bytes
(100%)
...udget-Envelope-loads-the-budget-page-with-budgeted-amounts-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-25 Bytes
(100%)
...apshots/Mobile-Budget-Envelope-updates-the-budgeted-amount-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(100%)
...apshots/Mobile-Budget-Envelope-updates-the-budgeted-amount-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-27 Bytes
(100%)
...apshots/Mobile-Budget-Envelope-updates-the-budgeted-amount-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14 KB
(71%)
...cking--0ba04-nt-amount-opens-the-budget-summary-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.5 KB
(71%)
...cking--1ce6d-nt-amount-opens-the-budget-summary-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.6 KB
(67%)
...cking--42062-in-the-page-header-opens-the-month-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14 KB
(66%)
...cking--49fb6-in-the-page-header-opens-the-month-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.6 KB
(68%)
...cking--5f098-roup-name-opens-the-category-group-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.6 KB
(66%)
...cking--929be-roup-name-opens-the-category-group-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.2 KB
(68%)
...cking--a3783-in-the-page-header-opens-the-budget-page-menu-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-16.1 KB
(67%)
...cking--a8b5e-in-the-page-header-opens-the-budget-page-menu-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.4 KB
(67%)
...cking--b1562-in-the-page-header-opens-the-month-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.2 KB
(67%)
...cking--dc927-roup-name-opens-the-category-group-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15 KB
(70%)
...cking--f224f-nt-amount-opens-the-budget-summary-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.5 KB
(68%)
...cking--f8a19-in-the-page-header-opens-the-budget-page-menu-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.8 KB
(66%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.5 KB
(66%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-15.9 KB
(65%)
...hat-clicking-the-balance-cell-opens-the-balance-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-12.4 KB
(73%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-12.7 KB
(73%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.1 KB
(72%)
...hat-clicking-the-budgeted-cell-opens-the-budget-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-13.6 KB
(65%)
...t-clicking-the-category-name-opens-the-category-menu-modal-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.2 KB
(64%)
...t-clicking-the-category-name-opens-the-category-menu-modal-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-14.5 KB
(63%)
...t-clicking-the-category-name-opens-the-category-menu-modal-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+723 Bytes
(100%)
...tion-available-funds-overspent-budgeted-and-for-next-month-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+436 Bytes
(100%)
...tion-available-funds-overspent-budgeted-and-for-next-month-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+446 Bytes
(100%)
...tion-available-funds-overspent-budgeted-and-for-next-month-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+732 Bytes
(100%)
...est.js-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+432 Bytes
(100%)
...est.js-snapshots/Budget-transfer-funds-to-another-category-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+450 Bytes
(100%)
...est.js-snapshots/Budget-transfer-funds-to-another-category-3-chromium-linux.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+685 Bytes
(100%)
...stom-reports-Switches-to-Area-Graph-and-checks-the-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+697 Bytes
(100%)
...stom-reports-Switches-to-Area-Graph-and-checks-the-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+706 Bytes
(100%)
...stom-reports-Switches-to-Area-Graph-and-checks-the-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+664 Bytes
(100%)
...ustom-reports-Switches-to-Bar-Graph-and-checks-the-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+656 Bytes
(100%)
...ustom-reports-Switches-to-Bar-Graph-and-checks-the-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+695 Bytes
(100%)
...ustom-reports-Switches-to-Bar-Graph-and-checks-the-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+724 Bytes
(100%)
...stom-reports-Switches-to-Data-Table-and-checks-the-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+678 Bytes
(100%)
...stom-reports-Switches-to-Data-Table-and-checks-the-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+727 Bytes
(100%)
...stom-reports-Switches-to-Data-Table-and-checks-the-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+680 Bytes
(100%)
...tom-reports-Switches-to-Donut-Graph-and-checks-the-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+719 Bytes
(100%)
...tom-reports-Switches-to-Donut-Graph-and-checks-the-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+711 Bytes
(100%)
...tom-reports-Switches-to-Donut-Graph-and-checks-the-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+675 Bytes
(100%)
...stom-reports-Switches-to-Line-Graph-and-checks-the-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+706 Bytes
(100%)
...stom-reports-Switches-to-Line-Graph-and-checks-the-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+680 Bytes
(100%)
...stom-reports-Switches-to-Line-Graph-and-checks-the-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+671 Bytes
(100%)
...reports-Validates-that-show-labels-button-shows-the-labels-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+733 Bytes
(100%)
...reports-Validates-that-show-labels-button-shows-the-labels-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+703 Bytes
(100%)
...reports-Validates-that-show-labels-button-shows-the-labels-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+649 Bytes
(100%)
...alidates-that-show-legend-button-shows-the-legend-side-bar-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+628 Bytes
(100%)
...alidates-that-show-legend-button-shows-the-legend-side-bar-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+700 Bytes
(100%)
...alidates-that-show-legend-button-shows-the-legend-side-bar-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+698 Bytes
(100%)
...ports-Validates-that-show-summary-button-shows-the-summary-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+673 Bytes
(100%)
...ports-Validates-that-show-summary-button-shows-the-summary-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+750 Bytes
(100%)
...ports-Validates-that-show-summary-button-shows-the-summary-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+666 Bytes
(100%)
...snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+679 Bytes
(100%)
...snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+671 Bytes
(100%)
...snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+10.4 KB
(120%)
...js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+9.79 KB
(120%)
...js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+10.4 KB
(120%)
...js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+684 Bytes
(100%)
...snapshots/Reports-loads-net-worth-graph-and-checks-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+700 Bytes
(100%)
...snapshots/Reports-loads-net-worth-graph-and-checks-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+633 Bytes
(100%)
...snapshots/Reports-loads-net-worth-graph-and-checks-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+718 Bytes
(100%)
.../e2e/rules.test.js-snapshots/Rules-checks-the-page-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+734 Bytes
(100%)
.../e2e/rules.test.js-snapshots/Rules-checks-the-page-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+722 Bytes
(100%)
.../e2e/rules.test.js-snapshots/Rules-checks-the-page-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+680 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+691 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+668 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+985 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-4-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1005 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-5-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+969 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-6-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+955 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+994 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+980 Bytes
(100%)
...e-and-makes-sure-it-is-applied-when-creating-a-transaction-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.98 KB
(97%)
...edules.test.js-snapshots/Schedules-checks-the-page-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.72 KB
(98%)
...edules.test.js-snapshots/Schedules-checks-the-page-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.59 KB
(98%)
...edules.test.js-snapshots/Schedules-checks-the-page-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.04 KB
(97%)
...-new-schedule-posts-the-transaction-and-later-completes-it-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-915 Bytes
(99%)
...new-schedule-posts-the-transaction-and-later-completes-it-10-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-814 Bytes
(99%)
...new-schedule-posts-the-transaction-and-later-completes-it-11-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-475 Bytes
(100%)
...new-schedule-posts-the-transaction-and-later-completes-it-12-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.79 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.7 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.06 KB
(97%)
...-new-schedule-posts-the-transaction-and-later-completes-it-4-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.88 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-5-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.75 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-6-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.99 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-7-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.84 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-8-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.65 KB
(98%)
...-new-schedule-posts-the-transaction-and-later-completes-it-9-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+747 Bytes
(100%)
...ettings.test.js-snapshots/Settings-checks-the-page-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+666 Bytes
(100%)
...ettings.test.js-snapshots/Settings-checks-the-page-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+655 Bytes
(100%)
...ettings.test.js-snapshots/Settings-checks-the-page-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+864 Bytes
(100%)
...e-Transactions-creates-a-transaction-from-accounts-id-page-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+871 Bytes
(100%)
...e-Transactions-creates-a-transaction-from-accounts-id-page-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+960 Bytes
(100%)
...e-Transactions-creates-a-transaction-from-accounts-id-page-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+795 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+816 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+880 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+854 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-4-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+805 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-5-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+883 Bytes
(100%)
...obile-Transactions-creates-a-transaction-via-footer-button-6-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+975 Bytes
(100%)
...ons.test.js-snapshots/Transactions-checks-the-page-visuals-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1006 Bytes
(100%)
...ons.test.js-snapshots/Transactions-checks-the-page-visuals-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+980 Bytes
(100%)
...ons.test.js-snapshots/Transactions-checks-the-page-visuals-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+952 Bytes
(100%)
...js-snapshots/Transactions-creates-a-split-test-transaction-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+959 Bytes
(100%)
...js-snapshots/Transactions-creates-a-split-test-transaction-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+931 Bytes
(100%)
...js-snapshots/Transactions-creates-a-split-test-transaction-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+950 Bytes
(100%)
....test.js-snapshots/Transactions-creates-a-test-transaction-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1004 Bytes
(100%)
....test.js-snapshots/Transactions-creates-a-test-transaction-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+971 Bytes
(100%)
....test.js-snapshots/Transactions-creates-a-test-transaction-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+968 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-1-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+977 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-2-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+909 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-3-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+972 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-4-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1016 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-5-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1011 Bytes
(100%)
...snapshots/Transactions-creates-a-transfer-test-transaction-6-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1.06 KB
(100%)
...js-snapshots/Transactions-filters-transactions-by-category-7-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1.05 KB
(100%)
...js-snapshots/Transactions-filters-transactions-by-category-8-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1.05 KB
(100%)
...js-snapshots/Transactions-filters-transactions-by-category-9-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1.03 KB
(100%)
...est.js-snapshots/Transactions-filters-transactions-by-date-7-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1.03 KB
(100%)
...est.js-snapshots/Transactions-filters-transactions-by-date-8-chromium-linux.png
Oops, something went wrong.
Binary file modified
BIN
+1 KB
(100%)
...est.js-snapshots/Transactions-filters-transactions-by-date-9-chromium-linux.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
import { type CSSObject } from '@emotion/css/dist/declarations/src/create-instance'; | ||
|
||
// Allow images to be imported | ||
declare module '*.png'; | ||
|
||
declare module 'react' { | ||
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions, @typescript-eslint/no-empty-object-type | ||
interface CSSProperties extends CSSObject {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.