()
| 1197 | } |
| 1198 | |
| 1199 | function nextPage() { |
| 1200 | if (hasMorePages.value) { |
| 1201 | currentPage.value += 1; |
| 1202 | pageInput.value = currentPage.value; |
| 1203 | loadVMList(); |
| 1204 | } |
| 1205 | } |
| 1206 | |
| 1207 | function prevPage() { |
| 1208 | if (currentPage.value > 1) { |
nothing calls this directly
no test coverage detected