-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(publish): add confirm option #262
Conversation
loadPage(url) { | ||
window.location.href = url; | ||
if (url === window.location.href) { | ||
window.location.reload(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
URLs with hashes in them aren't refreshed otherwise.
@@ -118,10 +118,10 @@ | |||
* @prop {string} id The plugin ID (mandatory) | |||
* @prop {PluginButton} [button] A button configuration object (optional) | |||
* @prop {string} [container] The ID of a dropdown to add this plugin to (optional) | |||
* @prop {boolean} [override] Replace an existing plugin (optional) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I decided to drop this unused legacy property. It has no more effect in the new sidekick.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## release-20240924 #262 +/- ##
=================================================
Coverage 99.89% 99.89%
=================================================
Files 51 51
Lines 1975 1981 +6
=================================================
+ Hits 1973 1979 +6
Misses 2 2 ☔ View full report in Codecov by Sentry. |
# [1.32.0](v1.31.4...v1.32.0) (2024-09-24) ### Bug Fixes * dynamically load in ui.js ([a4fc57d](a4fc57d)) * remove dynamic import from background script ([58cc888](58cc888)) ### Features * extensible source support ([#245](#245)) ([#268](#268)) ([a834be2](a834be2)) * **publish:** add confirm option ([#262](#262)) ([7e8e1fc](7e8e1fc)) * support transient site token ([#272](#272)) ([2aeb56a](2aeb56a))
Fix #260
Fix #261