Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

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
fix: Denote auto-draft status
If Apple and Google allowed programmatic focus of interactive elements
in web views, this would ensure the post title field is focused for new
drafts. However, Apple and Google require user interaction--e.g.,
taps--for the virtual keyboard to display.

Regardless, denoting the auto-draft status is likely still worthwhile.
  • Loading branch information
dcalhoun committed Jan 29, 2025
commit af3f3a922a8c61b379a3472bad2fc8025b6206d8
2 changes: 1 addition & 1 deletion src/utils/bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export function getPost() {
// We assign a temporary ID of -1.
return {
type: 'post',
status: 'draft',
status: 'auto-draft',
id: -1,
};
}
Expand Down