Skip to content

Commit bf9b81f

Browse files
committed
Fix table not refreshing when status changes
1 parent 8e2fd05 commit bf9b81f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/com/coder/gateway/models/WorkspaceAgentModel.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.coder.gateway.models
33
import com.coder.gateway.sdk.Arch
44
import com.coder.gateway.sdk.OS
55
import com.coder.gateway.sdk.v2.models.WorkspaceTransition
6-
import java.util.UUID
6+
import java.util.*
77
import javax.swing.Icon
88

99
data class WorkspaceAgentModel(
@@ -32,6 +32,7 @@ data class WorkspaceAgentModel(
3232
if (name != other.name) return false
3333
if (templateID != other.templateID) return false
3434
if (templateName != other.templateName) return false
35+
if (agentStatus != other.agentStatus) return false
3536

3637
return true
3738
}

0 commit comments

Comments
 (0)