File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 208
208
<button
209
209
aria-label =" Previous"
210
210
class =" icon-cheveron-left"
211
- class:u- cursor-pointer ={currentIndex !== 0 }
211
+ style: cursor ={currentIndex !== 0 ? ' pointer ' : undefined }
212
212
on:click ={showPrevious }
213
213
disabled ={currentIndex === 0 }
214
214
class:active ={currentIndex > 0 }></button >
217
217
aria-label =" Next"
218
218
class =" icon-cheveron-right"
219
219
on:click ={showNext }
220
- class:u-cursor-pointer ={currentIndex !==
221
- filteredModalAlerts .length - 1 }
220
+ style:cursor ={currentIndex !==
221
+ filteredModalAlerts .length - 1
222
+ ? ' pointer'
223
+ : undefined }
222
224
disabled ={currentIndex === filteredModalAlerts .length - 1 }
223
225
class:active ={currentIndex !==
224
226
filteredModalAlerts .length - 1 }></button >
317
319
<button
318
320
aria-label =" Previous"
319
321
class =" icon-cheveron-left"
320
- class:u- cursor-pointer ={currentIndex !== 0 }
322
+ style: cursor ={currentIndex !== 0 ? ' pointer ' : undefined }
321
323
on:click ={showPrevious }
322
324
disabled ={currentIndex === 0 }
323
325
class:active ={currentIndex > 0 }></button >
326
328
aria-label =" Next"
327
329
class =" icon-cheveron-right"
328
330
on:click ={showNext }
329
- class:u-cursor-pointer ={currentIndex !==
330
- filteredModalAlerts .length - 1 }
331
+ style:cursor ={currentIndex !==
332
+ filteredModalAlerts .length - 1
333
+ ? ' pointer'
334
+ : undefined }
331
335
disabled ={currentIndex ===
332
336
filteredModalAlerts .length - 1 }
333
337
class:active ={currentIndex !==
You can’t perform that action at this time.
0 commit comments