Compare commits

...
2 changed files with 10 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"claude-dev": patch
---
Fix cursor state after restoring files to be disabled after checked out
@@ -219,7 +219,11 @@ export const CheckmarkControl = ({ messageTs, isCheckpointCheckedOut }: Checkmar
onClick={handleRestoreWorkspace}
disabled={restoreWorkspaceDisabled || isCheckpointCheckedOut}
style={{
cursor: restoreWorkspaceDisabled || isCheckpointCheckedOut ? "wait" : "pointer",
cursor: isCheckpointCheckedOut
? "not-allowed"
: restoreWorkspaceDisabled
? "wait"
: "pointer",
width: "100%",
marginBottom: "10px",
}}>