Last active
July 11, 2025 19:50
-
-
Save AndyObtiva/f30c610762ec26420702d483dc410482 to your computer and use it in GitHub Desktop.
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
| ... | |
| markup { | |
| div { | |
| ... | |
| multi_checkbox_dropdown( | |
| values: SomePresenter::STATUS_FILTER_TYPES, | |
| display_values: SomePresenter::STATUS_FILTER_TYPES.map(&:capitalize), | |
| locale: I18n.locale, | |
| width: 190, | |
| translations: { | |
| en: {select: 'Filter by Status', | |
| fr: {select: 'Filtrer par statut'}, | |
| es: {select: 'Filtrar por estado'}, | |
| }, | |
| ) { | |
| selected_values <=> [@some_presenter, :status_filters] | |
| } | |
| ... | |
| } | |
| } | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment