Add multi-select support to Transaction Detail Report filters#672
Merged
Conversation
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add multi-select capabilities for transaction filters
Add multi-select support to Transaction Detail Report filters
Jan 19, 2026
Member
|
@copilot is there no better ui component to display this (i.e. a dropdown with checkboxes) |
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
Contributor
Author
Replaced the standard multi-select with a custom dropdown checkbox component. The new UI shows a cleaner interface with:
Implemented in commit 7fc55ee |
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.


Merchant, Operator, and Product filters now support multi-select to enable filtering by multiple values simultaneously using a modern dropdown with checkboxes UI component.
Changes
Backend
GetTransactionDetailQuerysignature to acceptList<Guid>?instead ofGuid?for each filter typeTestMediatorServiceandStubTestDatato useContains()with deferred executionFrontend
MultiSelectDropdown.razorcomponent with dropdown and checkboxesParseGuidList()helper to safely parse selected values withTryParse()aria-label)UI Component Features
The new dropdown component provides:
Example
When no options are selected, the filter returns
null(show all). When options are selected, only matching transactions are returned.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.