-
Notifications
You must be signed in to change notification settings - Fork 69
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
Reporting: Fix the View report
link URL on Total payment volume tile, within Payment activity widget
#8726
Merged
Merged
Reporting: Fix the View report
link URL on Total payment volume tile, within Payment activity widget
#8726
Changes from 11 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9529546
Add search params for TPV to URL
477a606
Add changelog
039068e
Merge branch 'develop' into fix/8706-tpv-view-report-link
95c9e0c
Update test snapshot
eb1e2dc
Merge branch 'develop' into fix/8706-tpv-view-report-link
7930735
Fix typo in changelog comment
f81fe22
Merge branch 'develop' into fix/8706-tpv-view-report-link
jessy-p 5008837
Merge branch 'develop' into fix/8706-tpv-view-report-link
jessy-p 75a17d2
Show date filter explicitly
2c2d6b1
Update test snapshot
61cf53a
Clean up unwanted import
62bdd19
Merge branch 'develop' into fix/8706-tpv-view-report-link
75a65a4
Adjust search component height
16d12d2
code refactor to help adding links of other tiles
4b53bac
Refactor - move search function outside component.
5170cf9
Merge branch 'develop' into fix/8706-tpv-view-report-link
8cd9331
Update test snapshot
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,5 @@ | ||
Significance: patch | ||
Type: fix | ||
Comment: Comment: Fix the `View report` link on Total payment volume tile on the Payment activity widget. Changes behind feature flag, and part of larger change that adds the Payment activity widget. | ||
|
||
|
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Although it is a minor fix, this change isn't behind the feature flag.
Perhaps it would help communicate this change if we had 2 changelog entries:
Alternatively, relevant to this comment:
We could move this change to a separate issue/PR. This may help us step back and look at the problem/solution separate to the Payment Activity Card.
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.
As an alternative UX to
overflow: scroll
, I would consider letting the search box to increase in height when necessary, example:(avoiding the
!important
if possible 😉)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.
I had completely missed this! Thanks for sharing!.
I would favor creating a separate issue + PR. It would be tiny but keep things clear.I did a deeper check and it looks like we need some more work to do for responsive view ( for narrow screens ) . e.g. The Date filter with
Between
appears botched in mobile screen, and the search prompt disappears too in the narrow screen. I will create a separate issue for this.Within this PR however, I will include the change @Jinksi suggested to increase the height. - 75a65a4. Since it will help immediately with how the tags appear when there are too many.
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.
@nagpai Thanks for rising it and @Jinksi thanks for coming up with the fix. I feel like the increase in height is the best we can do now. For the narrower (mobile) screens - I don't know if this is possible – but I'd:
x
cross sign for the user to clear the filters visibleIn a nutshell, I'd prioritise the user's ability to search over seeing all the applied filters.
Ugh, does it make sense?
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.
@rogermattic Thanks, Magda! I will add this guidance in the new issue I create for improving the mobile UI 🙏 !
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.
Thanks @nagpai ! if you have anything for me to look at, just ping me:)
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.
I have created #8781 to track this change here!