@@ -58,6 +58,7 @@ export default function MifosXDemos() {
5858 < Button
5959 className = "bg-blue-500 text-white px-3 py-1 rounded text-sm hover:bg-blue-600 cursor-pointer"
6060 onClick = { ( ) => NavigateToDemo ( id , demoName ) }
61+ title = "Start this demo"
6162 >
6263 Start Demo
6364 </ Button >
@@ -155,6 +156,7 @@ export default function MifosXDemos() {
155156 onClick = { ( ) => table . setPageIndex ( 0 ) }
156157 disabled = { ! table . getCanPreviousPage ( ) }
157158 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
159+ title = "First page"
158160 >
159161 < ChevronsLeft className = "h-4 w-4" />
160162 </ Button >
@@ -165,6 +167,7 @@ export default function MifosXDemos() {
165167 onClick = { ( ) => table . previousPage ( ) }
166168 disabled = { ! table . getCanPreviousPage ( ) }
167169 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
170+ title = "Previous page"
168171 >
169172 < ChevronLeft className = "h-4 w-4" />
170173 </ Button >
@@ -175,6 +178,7 @@ export default function MifosXDemos() {
175178 onClick = { ( ) => table . nextPage ( ) }
176179 disabled = { ! table . getCanNextPage ( ) }
177180 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
181+ title = "Next page"
178182 >
179183 < ChevronRight className = "h-4 w-4" />
180184 </ Button >
@@ -185,6 +189,7 @@ export default function MifosXDemos() {
185189 onClick = { ( ) => table . setPageIndex ( table . getPageCount ( ) - 1 ) }
186190 disabled = { ! table . getCanNextPage ( ) }
187191 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
192+ title = "Last page"
188193 >
189194 < ChevronsRight className = "h-4 w-4" />
190195 </ Button >
0 commit comments