File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default class extends Controller {
5757
5858 showCurrentSlide () {
5959 this .slideTargets .forEach ((element , index ) => {
60- element .hidden = index != this .index
60+ element .hidden = index !== this .index
6161 })
6262 }
6363}
@@ -166,7 +166,7 @@ export default class extends Controller {
166166
167167 showCurrentSlide () {
168168 this .slideTargets .forEach ((element , index ) => {
169- element .hidden = index != this .indexValue
169+ element .hidden = index !== this .indexValue
170170 })
171171 }
172172}
@@ -203,7 +203,7 @@ export default class extends Controller {
203203
204204 showCurrentSlide () {
205205 this .slideTargets .forEach ((element , index ) => {
206- element .hidden = index != this .indexValue
206+ element .hidden = index !== this .indexValue
207207 })
208208 }
209209}
You can’t perform that action at this time.
0 commit comments