MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / nextPage

Function nextPage

vmm/ui/src/composables/useVmManager.ts:1199–1205  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

loadVMListFunction · 0.85

Tested by

no test coverage detected