Skip to content

Commit eb1d1af

Browse files
committed
Use proper close icon reference
Closes #16.
1 parent 3dd20e1 commit eb1d1af

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

documentation/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.82.0
4+
* Use proper close icon reference
5+
36
## 0.81.0
47
* Switch to Sass modules system
58

src/js/components/message.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<button
55
v-if="!closeAfter"
66
type="button"
7-
class="closeBtn nBtn icr iconClose"
7+
class="closeBtn nBtn icr iconX"
88
@click="close"
99
>
1010
{{ translations.closeCaption}}

src/js/formElements/externalAdmin.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<button
88
v-if="relatedModels && isInteractive"
99
type="button"
10-
class="removeBtn nBtn iconClose icr"
10+
class="removeBtn nBtn iconX icr"
1111
@click="remove(relatedModels[0])"
1212
></button>
1313
<button

src/js/formElements/map.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export default {
161161
});
162162
163163
const control = elementFromString(`
164-
<button type="button" class="removeMarker nBtn iconClose">
164+
<button type="button" class="removeMarker nBtn iconX">
165165
${translate('formElements.map.removeMarkerCaption')}
166166
</button>
167167
`);

src/js/formElements/nestedSelect/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<button
77
v-if="isInteractive" type="button"
88
@click="isInteractive && deselectModel(model)"
9-
class="removeBtn iconClose icr nBtn"
9+
class="removeBtn iconX icr nBtn"
1010
></button>
1111
</div>
1212
<button

0 commit comments

Comments
 (0)