Skip to content

Commit c0c300c

Browse files
committed
fix percy
1 parent e9df4fa commit c0c300c

File tree

5 files changed

+5
-14
lines changed

5 files changed

+5
-14
lines changed

addon/components/es-card-content.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{!-- Bug link: https://github.com/ember-template-lint/ember-template-lint/issues/1286 --}}
33

44
{{#if @icon}}
5-
<EsIcon @icon={{@icon}} class="card__icon" width="60px" />
5+
<EsIcon @icon={{@icon}} @class="card__icon" width="60px" />
66
{{/if}}
77

88
{{#if @image}}

addon/components/es-pagination.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<div class="pagination-wrapper">
22
{{#if (and (has-block "previous") @showPrevious)}}
33
<div class="previous-wrapper">
4-
<img alt="left arrow" src="/images/icons/arrow-icon.svg" />
4+
<img alt="left arrow" src="/images/arrow-icon.svg" />
55
<div>{{yield to='previous'}}</div>
66
</div>
77
{{/if}}
88

99
{{#if (and (has-block "next") @showNext)}}
1010
<div class="next-wrapper">
1111
<div>{{yield to='next'}}</div>
12-
<img alt="right arrow" src="/images/icons/arrow-icon.svg" />
12+
<img alt="right arrow" src="/images/arrow-icon.svg" />
1313
</div>
1414
{{/if}}
1515
</div>

addon/constants/icons.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,7 @@ const staticPostcssAddonTree = require('static-postcss-addon-tree');
77
module.exports = {
88
name: require('./package').name,
99

10-
options: {
11-
svgJar: {
12-
sourceDirs: [
13-
'public/images/icons',
14-
'node_modules/ember-styleguide/public/images/icons',
15-
'tests/dummy/public/images/icons'
16-
]
17-
},
18-
},
10+
options: {},
1911

2012
treeForAddon() {
2113
var tree = this._super(...arguments);

public/images/arrow-icon.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)