-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
make BudgetTable Budgeted value positive on mobile #3602
Conversation
✅ Deploy Preview for actualbudget ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Bundle Stats — desktop-clientHey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle. As this PR is updated, I'll keep you updated on how the bundle size is impacted. Total
Changeset
View detailed bundle breakdownAdded No assets were added Removed No assets were removed Bigger
Smaller No assets were smaller Unchanged
|
Bundle Stats — loot-coreHey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle. As this PR is updated, I'll keep you updated on how the bundle size is impacted. Total
Changeset No files were changed View detailed bundle breakdownAdded No assets were added Removed No assets were removed Bigger No assets were bigger Smaller No assets were smaller Unchanged
|
WalkthroughThe changes in this pull request focus on the Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (2)
packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (2)
Line range hint
1-1837
: Consider revisiting commented-out drag-and-drop functionality.There are several sections of commented-out code related to drag-and-drop functionality throughout the file. It might be worth investigating whether this functionality is still needed or if it can be safely removed to improve code clarity.
Line range hint
1-1837
: Consider splitting the file into smaller components.This file is quite large and contains multiple components related to the budget table functionality. To improve maintainability and readability, consider splitting this file into smaller, more focused components. This would make the code easier to navigate and maintain in the future.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (1 hunks)
🧰 Additional context used
🔇 Additional comments (1)
packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (1)
1837-1837
: LGTM: Budgeted value now displayed as positive.The change from
format(value, type)
toformat(-value, type)
successfully implements the PR objective of making the Budgeted value positive on mobile. This change ensures consistency with the desktop version and improves the user experience.
Hmm vrt should have failed. |
ac8ba3e
to
9a93e46
Compare
Agreed Do you mind checking the VRT why it's not failing? It should be in |
My guess is that since the change is so small it came in under the threshold of allowed difference. |
Temporarily dropping the threshold did the trick. |
8854952
to
5032b37
Compare
To match the desktop behaviour.
5032b37
to
31fc051
Compare
To match the desktop behaviour.