Skip to content

Commit

Permalink
fix: adds colon for meets all label (#806)
Browse files Browse the repository at this point in the history
#186

Adds a `:` character for the meets all label

## Demos

### Before

<img width="178" alt="image"
src="https://github.com/chanzuckerberg/cryoet-data-portal/assets/2176050/341983f7-0019-4e1a-8fbe-ec6b82ee3442">

### After

<img width="167" alt="image"
src="https://github.com/chanzuckerberg/cryoet-data-portal/assets/2176050/9a4a1055-2092-4f62-bdd9-5c7b8860bb1b">
  • Loading branch information
codemonkey800 authored Jun 13, 2024
1 parent 52a0058 commit abdbf55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function IncludedContentsFilterSection() {

const meetsAll = document.createElement('div')
meetsAll.id = MEETS_ALL_LABEL_ID
meetsAll.textContent = t('meetsAll')
meetsAll.textContent = `${t('meetsAll')}:`

filterButtonNode?.insertAdjacentElement('afterend', meetsAll)
} else if (!showMeetsAll && meetsAllNode) {
Expand Down

0 comments on commit abdbf55

Please sign in to comment.