Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
54011fc
Add pause and play icons for sync upload controls
gavande1 Jan 12, 2026
0fd7a49
Add pause/resume IPC handlers for TUS uploads
gavande1 Jan 12, 2026
7963083
Add uploadingManuallyPaused state and update cancel logic
gavande1 Jan 12, 2026
56baa4c
Add pause/resume upload hooks and expose in context
gavande1 Jan 12, 2026
d24028e
Add pause/resume UI controls for sync uploads
gavande1 Jan 12, 2026
beb7875
Update tests to include pause/resume upload mocks
gavande1 Jan 12, 2026
6cd11b2
Fix TUS upload cancellation to prevent reply never sent error
gavande1 Jan 14, 2026
6e779d7
Fix tooltip position
gavande1 Jan 14, 2026
78b80c8
Add error handling for aborted export in sync push hook
gavande1 Jan 16, 2026
5a0d878
Abort existing TUS upload before starting a new one
gavande1 Jan 16, 2026
11d2101
Update PauseIcon component
gavande1 Jan 16, 2026
9892f91
Refactor PauseIcon component to use a smaller size
gavande1 Jan 20, 2026
2ec6e22
Update upload pause logic to conditionally
gavande1 Jan 20, 2026
f3c1926
Improve sync upload pause/resume logic to check manual pause state
gavande1 Jan 20, 2026
a7ad509
Improve sync UI transitions and fix layout shifts
epeicher Jan 27, 2026
593a92a
Merge branch 'trunk' of github.com:Automattic/studio into stu-1143-pa…
epeicher Jan 27, 2026
cb53da0
Move the pause icon down a bit for better alignment
epeicher Jan 27, 2026
1ced096
Fix vertical shift when displaying Push complete
epeicher Jan 27, 2026
45f4e4b
Fix right padding on the sync buttons
epeicher Jan 27, 2026
27bfbe8
Merge branch 'trunk' of github.com:Automattic/studio into stu-1143-pa…
epeicher Jan 27, 2026
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move the pause icon down a bit for better alignment
  • Loading branch information
epeicher committed Jan 27, 2026
commit cb53da0710d12db6df5e63671f59c9c490b6eb2f
4 changes: 2 additions & 2 deletions src/components/icons/pause.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const PauseIcon = () => (
Comment thread
gavande1 marked this conversation as resolved.
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="4" width="2" height="12" rx="1" fill="currentColor" />
<rect x="12" y="4" width="2" height="12" rx="1" fill="currentColor" />
<rect x="6" y="6" width="2" height="12" rx="1" fill="currentColor" />
<rect x="12" y="6" width="2" height="12" rx="1" fill="currentColor" />
</svg>
);