@@ -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 >
@@ -161,6 +162,7 @@ export default function MifosXDemos() {
161162 onClick = { ( ) => table . setPageIndex ( 0 ) }
162163 disabled = { ! table . getCanPreviousPage ( ) }
163164 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
165+ title = "First page"
164166 >
165167 < ChevronsLeft className = "h-4 w-4" />
166168 </ Button >
@@ -171,6 +173,7 @@ export default function MifosXDemos() {
171173 onClick = { ( ) => table . previousPage ( ) }
172174 disabled = { ! table . getCanPreviousPage ( ) }
173175 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
176+ title = "Previous page"
174177 >
175178 < ChevronLeft className = "h-4 w-4" />
176179 </ Button >
@@ -181,6 +184,7 @@ export default function MifosXDemos() {
181184 onClick = { ( ) => table . nextPage ( ) }
182185 disabled = { ! table . getCanNextPage ( ) }
183186 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
187+ title = "Next page"
184188 >
185189 < ChevronRight className = "h-4 w-4" />
186190 </ Button >
@@ -191,6 +195,7 @@ export default function MifosXDemos() {
191195 onClick = { ( ) => table . setPageIndex ( table . getPageCount ( ) - 1 ) }
192196 disabled = { ! table . getCanNextPage ( ) }
193197 className = "p-2 disabled:opacity-50 disabled:cursor-not-allowed"
198+ title = "Last page"
194199 >
195200 < ChevronsRight className = "h-4 w-4" />
196201 </ Button >
0 commit comments