Commit 2a410860 authored by Peter Hegman's avatar Peter Hegman

Merge branch '334917-change-wrench-icon-to-circle-dashed' into 'master'

Change remediated badge icon from wrench to check-circle-dashed

See merge request gitlab-org/gitlab!74689
parents ef8c686a 5978966a
...@@ -26,7 +26,7 @@ export default { ...@@ -26,7 +26,7 @@ export default {
<template> <template>
<div class="gl-display-inline-block"> <div class="gl-display-inline-block">
<gl-badge ref="badge" variant="info"> <gl-badge ref="badge" variant="info">
<gl-icon name="admin" /> <gl-icon name="check-circle-dashed" />
</gl-badge> </gl-badge>
<gl-popover <gl-popover
ref="popover" ref="popover"
......
...@@ -23,7 +23,7 @@ describe('Remediated badge component', () => { ...@@ -23,7 +23,7 @@ describe('Remediated badge component', () => {
afterEach(() => wrapper.destroy()); afterEach(() => wrapper.destroy());
it('should display the correct icon', () => { it('should display the correct icon', () => {
expect(findIcon().props('name')).toBe('admin'); expect(findIcon().props('name')).toBe('check-circle-dashed');
}); });
it('should link the badge and the popover', () => { it('should link the badge and the popover', () => {
......
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