Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
- Add accessibility: ARIA labels, focus trap, keyboard nav, focus-visible outlines
- Add logout confirmation modal (replaces double-click, works in Firefox)
- Improve error messages for 401 and permission errors
- Add password manager autofill support on setup input
- Add `make release` with interactive version bump menu
- Add `make demo` for screenshot-ready extension builds with mock data
- Add privacy policy (PRIVACY.md)
Expand Down
2 changes: 1 addition & 1 deletion newtab.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h3 data-i18n="setupGetStarted">Get started</h3>
</ol>
<form id="setup-form" aria-label="GitHub token setup">
<label for="setup-token" data-i18n="setupTokenLabel">GitHub Token</label>
<input type="password" id="setup-token" name="github-token" data-i18n-placeholder="setupTokenPlaceholder" placeholder="ghp_..." autocomplete="current-password" autofocus>
<input type="password" id="setup-token" data-i18n-placeholder="setupTokenPlaceholder" placeholder="ghp_..." autocomplete="off" autofocus>
<button type="submit" data-i18n="setupSave">Save</button>
</form>
<p id="setup-error" class="error" hidden></p>
Expand Down
Loading