mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
address comment.
This commit is contained in:
@@ -208,7 +208,7 @@
|
||||
<button
|
||||
aria-label="Previous"
|
||||
class="icon-cheveron-left"
|
||||
class:u-cursor-pointer={currentIndex !== 0}
|
||||
style:cursor={currentIndex !== 0 ? 'pointer' : undefined}
|
||||
on:click={showPrevious}
|
||||
disabled={currentIndex === 0}
|
||||
class:active={currentIndex > 0}></button>
|
||||
@@ -217,8 +217,10 @@
|
||||
aria-label="Next"
|
||||
class="icon-cheveron-right"
|
||||
on:click={showNext}
|
||||
class:u-cursor-pointer={currentIndex !==
|
||||
filteredModalAlerts.length - 1}
|
||||
style:cursor={currentIndex !==
|
||||
filteredModalAlerts.length - 1
|
||||
? 'pointer'
|
||||
: undefined}
|
||||
disabled={currentIndex === filteredModalAlerts.length - 1}
|
||||
class:active={currentIndex !==
|
||||
filteredModalAlerts.length - 1}></button>
|
||||
@@ -317,7 +319,7 @@
|
||||
<button
|
||||
aria-label="Previous"
|
||||
class="icon-cheveron-left"
|
||||
class:u-cursor-pointer={currentIndex !== 0}
|
||||
style:cursor={currentIndex !== 0 ? 'pointer' : undefined}
|
||||
on:click={showPrevious}
|
||||
disabled={currentIndex === 0}
|
||||
class:active={currentIndex > 0}></button>
|
||||
@@ -326,8 +328,10 @@
|
||||
aria-label="Next"
|
||||
class="icon-cheveron-right"
|
||||
on:click={showNext}
|
||||
class:u-cursor-pointer={currentIndex !==
|
||||
filteredModalAlerts.length - 1}
|
||||
style:cursor={currentIndex !==
|
||||
filteredModalAlerts.length - 1
|
||||
? 'pointer'
|
||||
: undefined}
|
||||
disabled={currentIndex ===
|
||||
filteredModalAlerts.length - 1}
|
||||
class:active={currentIndex !==
|
||||
|
||||
Reference in New Issue
Block a user