Closed KawanSoares closed 3 years ago
According Lighthouse report, the value "tabList" isn't valid, lowercase "tablist" is expected.
I fixed it by changing the line below: aria_suport.js: 9 $(this).attr('role', 'tabList'); to $(this).attr('role', 'tablist');
$(this).attr('role', 'tabList');
$(this).attr('role', 'tablist');
@TxSadhu You want to fix this up and then release a bug fix?
Thanks.
According Lighthouse report, the value "tabList" isn't valid, lowercase "tablist" is expected.
Screenshot from Lighthouse Report
![image](https://user-images.githubusercontent.com/3937749/117191128-9b888280-adb6-11eb-937f-9fc9131d637a.png)I fixed it by changing the line below: aria_suport.js: 9
$(this).attr('role', 'tabList');
to$(this).attr('role', 'tablist');