seems alright
This commit is contained in:
parent
ebe7bbb51d
commit
eac1bd0d13
58 changed files with 23125 additions and 153505 deletions
|
|
@ -507,7 +507,7 @@ export default function HomePage({
|
|||
)}
|
||||
</td>
|
||||
{[row.postcode, row.guides].map((has, j) => {
|
||||
const statusLabel = has ? 'Yes' : 'No';
|
||||
const statusLabel = has ? t('common.yes') : t('common.no');
|
||||
return (
|
||||
<td
|
||||
key={j}
|
||||
|
|
@ -520,11 +520,11 @@ export default function HomePage({
|
|||
);
|
||||
})}
|
||||
<td
|
||||
aria-label="Yes"
|
||||
aria-label={t('common.yes')}
|
||||
className="px-1.5 md:px-3 py-2.5 md:py-3.5 text-center text-base text-green-500 bg-teal-50 dark:bg-teal-900/30"
|
||||
>
|
||||
<span aria-hidden="true">✓</span>
|
||||
<span className="sr-only">Yes</span>
|
||||
<span className="sr-only">{t('common.yes')}</span>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue