code icon indicating copy to clipboard operation
code copied to clipboard

In Analytics, all flag icons have the same alt text of "Hidden country"

Open Scotsguy opened this issue 1 year ago • 0 comments

Example (with accessibilty overlay to show the alt text):

image

Code: https://github.com/modrinth/code/blob/0221034b60afb914dac5845196cd6089b0a3c82f/apps/frontend/src/components/ui/charts/ChartDisplay.vue#L195-L204

Could replace the alt text with something like the name of the label:

<template v-if="name.toLowerCase() === 'xx' || !name">Hidden</template>
                    <template v-else>{{ countryCodeToName(name) }}</template>

Scotsguy avatar Sep 12 '24 20:09 Scotsguy