We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a1f6f commit 869e99cCopy full SHA for 869e99c
src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
@@ -297,6 +297,8 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
297
}
298
299
private fun loadWorkspaces() {
300
+ poller?.cancel()
301
+
302
poller = cs.launch {
303
while (isActive) {
304
val workspaceList = withContext(Dispatchers.IO) {
@@ -319,8 +321,8 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
319
321
tableOfWorkspaces.selectItem(selectedWorkspace)
320
322
323
324
+ delay(5000)
325
- delay(5000)
326
327
328
0 commit comments