Pagination > Remove "disabled" attributes
## Problem The use of `disabled` and `aria-disabled="true"` are incorrect, and not necessary at all for both individual items and the set in general. Disabled should only apply to [some interactive elements](https://www.w3schools.com/tags/att_disabled.asp). `<li class="page-item disabled"><span size="md" aria-disabled="true" class="page-link">…</span></li>`. ## Solution This should be formatted as a normal list item with child text content. See https://www.w3schools.com/tags/att_disabled.asp for usage notes on the `disabled` attribute. For example: ``` <!-- Not this --> <li class="page-item disabled"><span size="md" aria-disabled="true" class="page-link">…</span></li> <!-- Do this --> <li><span>…</span></li> ``` Remove this control from GitLab UI because the entire pagination navigation should never be disabled and this applies the method above to all list items which also shouldn't be used. ![CleanShot_2022-02-10_at_12.16.28_2x](/uploads/02b86348c9d19874e1fa0052e5be0465/CleanShot_2022-02-10_at_12.16.28_2x.png)
issue