Commit 8cd90285 authored by David O'Regan's avatar David O'Regan Committed by Denys Mishunov

Clean up bogus CSS classes

parent ed4b163b
......@@ -25,7 +25,7 @@ import { capitalizeFirstCharacter, convertToSnakeCase } from '~/lib/utils/text_u
const tdClass = 'table-col d-flex d-md-table-cell align-items-center';
const bodyTrClass =
'gl-border-1 gl-border-t-solid gl-border-gray-100 hover-bg-blue-50 hover-gl-cursor-pointer hover-gl-border-b-solid hover-gl-border-blue-200';
'gl-border-1 gl-border-t-solid gl-border-gray-100 gl-hover-bg-blue-50 gl-hover-cursor-pointer gl-hover-border-b-solid gl-hover-border-blue-200';
const findDefaultSortColumn = () => document.querySelector('.js-started-at');
export default {
......
......@@ -137,7 +137,7 @@ describe('AlertManagementList', () => {
findAlerts()
.at(0)
.classes(),
).not.toContain('hover-bg-blue-50');
).not.toContain('gl-hover-bg-blue-50');
});
it('error state', () => {
......@@ -154,7 +154,7 @@ describe('AlertManagementList', () => {
findAlerts()
.at(0)
.classes(),
).not.toContain('hover-bg-blue-50');
).not.toContain('gl-hover-bg-blue-50');
});
it('empty state', () => {
......@@ -171,7 +171,7 @@ describe('AlertManagementList', () => {
findAlerts()
.at(0)
.classes(),
).not.toContain('hover-bg-blue-50');
).not.toContain('gl-hover-bg-blue-50');
});
it('has data state', () => {
......@@ -187,7 +187,7 @@ describe('AlertManagementList', () => {
findAlerts()
.at(0)
.classes(),
).toContain('hover-bg-blue-50');
).toContain('gl-hover-bg-blue-50');
});
it('displays status dropdown', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment