-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Pm Dummy PR #2942
base: master
Are you sure you want to change the base?
Pm Dummy PR #2942
Conversation
… into pm_connect_ui Removed a couple obsolete strings from Portuguese translations.
Pm connect UI
Refactor connect id screen UI
Pm connect bug fixes
… into jp/refactor-new-revamp-ui Added some translatable strings.
Refactor ConnectId Flow Screen UI
Refactor code
Refactor new UI and Solved Phone number picker issue
…ut assessment still pending. Removed an obsolete French string. Fixed nav crash in phone available dialog.
…d improved some layout spacing.
Better PIN validity checking. Better secondary phone validity checking. Improved spacing on phone verification page.
Set User Deacticate flow in new Revamp
User deactivate flow in new Ravamp
Translation added
Resolved comments
…vamp CCCT-483 || User Deactivate Flow (New Revamp)
Removed obsolete code that supported going to learn/delivery progress after download.
Always launching learn/deliver app immediately after downloading
Updated Connect page titles
Working on new delivery list screen with filter
Delivery list screen UI
PM-bug fixes in ui
cross-request: dimagi/commcare-core#1455 |
📝 WalkthroughWalkthroughThe pull request involves the removal of a public constant Sequence DiagramSince the change is minimal and only involves removing a constant, a sequence diagram is not particularly meaningful in this context. The change appears to be a simple code cleanup or preparatory step for further modifications to the login process. 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (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 (
|
@damagatchi retest this please |
1 similar comment
@damagatchi retest this please |
@damagatchi retest this please |
1 similar comment
@damagatchi retest this please |
@damagatchi retest this please |
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.
Requested a couple renames for consistency so future devs don't get confused
@@ -705,8 +705,8 @@ public boolean onCreateOptionsMenu(Menu menu) { | |||
menu.add(0, MENU_SORT, MENU_SORT, Localization.get("select.menu.sort")).setIcon( | |||
android.R.drawable.ic_menu_sort_alphabetically); | |||
if (isMappingEnabled) { | |||
menu.add(0, MENU_MAP, MENU_MAP, Localization.get("select.menu.map")).setIcon( | |||
android.R.drawable.ic_menu_mapmode); | |||
menu.add(0, MENU_MAP, MENU_MAP, Localization.get("select.menu.scan")).setIcon( |
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.
Seems dangerous to leave this as MENU_MAP if the action is now to scan instead.
@@ -743,6 +743,9 @@ public boolean onPrepareOptionsMenu(Menu menu) { | |||
menu.findItem(MENU_SORT).setEnabled(adapter != null); | |||
// hide sorting menu when using async loading strategy | |||
menu.findItem(MENU_SORT).setVisible((shortSelect == null || shortSelect.hasSortField())); | |||
if(isMappingEnabled) { | |||
menu.findItem(R.id.barcode_scan_action_bar).setIcon(R.drawable.ic_marker); |
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.
Likewise, think we should rename barcode_scan_action_bar to reflect the change to a map button
The merge-base changed after approval.
Summary
Dummy PR for commcare core apk build up
Feature Flag
Product Description
PR Checklist
Automated test coverage
Safety story
cross-request: dimagi/commcare-core#1455