You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: Headings must have content and the content must be accessible by a screen reader
(vue-a11y/heading-has-content) at src\components\utilities\BaseTitle.vue:3:5:
1|<template>2|<div data-test="baseTitle">>3|<h3 v-html="title"></h3>|^
In this component title is a required prop. So the <h3> will always have content. Currently we have to add a <!-- eslint-disable-next-line vue-a11y/heading-has-content -->.
The text was updated successfully, but these errors were encountered:
In this component
title
is a required prop. So the<h3>
will always have content. Currently we have to add a<!-- eslint-disable-next-line vue-a11y/heading-has-content -->
.The text was updated successfully, but these errors were encountered: