File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
<button
8
8
type =" button"
9
9
class =" va-btn va-flex va-items-center va-px-2 va-py-3 va-relative"
10
- @click =" $emit('hide-details ')"
10
+ @click =" $emit('hideDetails ')"
11
11
>
12
12
<IconArrowNarrow />
13
13
<span class =" va-ml-2 va-text-base va-font-medium va-leading-3" >{{ $vat('back', 'Back') }}</span >
@@ -153,7 +153,7 @@ export default {
153
153
}
154
154
},
155
155
156
- emits: [' hide-details ' ],
156
+ emits: [' hideDetails ' ],
157
157
158
158
disableAxeAudit: true ,
159
159
Original file line number Diff line number Diff line change 26
26
:key =" `subitem-${violation.id}`"
27
27
tag =" li"
28
28
class =" va-p-subitem va-px-2 va-py-3 va-flex va-justify-between va-items-start hover:va-bg-primary"
29
- @trigger =" $emit('show-details ', violation)"
29
+ @trigger =" $emit('showDetails ', violation)"
30
30
>
31
31
<div class =" va-flex va-items-start" >
32
32
<span :class =" `va-text-${violation.impact} va-text-2xl va-font-bold va-leading-4 va-mr-2`" >• ; </span >
42
42
class =" va-btn va-relative va-pt-1 va-pb-2 va-px-3"
43
43
style =" top : -2px ; right : -6px ;"
44
44
:aria-labelledby =" `see-more-${violation.id} violation-${violation.id}`"
45
- @click =" $emit('show-details ', violation)"
45
+ @click =" $emit('showDetails ', violation)"
46
46
>
47
47
<span
48
48
:id =" `see-more-${violation.id}`"
@@ -75,7 +75,7 @@ export default {
75
75
IconArrowNarrow
76
76
},
77
77
78
- emits: [' show-details ' ],
78
+ emits: [' showDetails ' ],
79
79
80
80
disableAxeAudit: true ,
81
81
Original file line number Diff line number Diff line change 5
5
aria-controls =" va-popup-box"
6
6
:aria-expanded =" popupShow.toString()"
7
7
:aria-label =" ariaLabelButton"
8
- @click =" $emit('toggle-popup ')"
8
+ @click =" $emit('togglePopup ')"
9
9
>
10
10
<span
11
11
v-show =" notifications && !popupShow"
@@ -67,7 +67,7 @@ export default {
67
67
}
68
68
},
69
69
70
- emits: [' toggle-popup ' ],
70
+ emits: [' togglePopup ' ],
71
71
72
72
disableAxeAudit: true ,
73
73
You can’t perform that action at this time.
0 commit comments