pinokiod 7.1.34 → 7.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/views/app.ejs +9 -2
package/package.json
CHANGED
package/server/views/app.ejs
CHANGED
|
@@ -7285,12 +7285,19 @@ const rerenderMenuSection = (container, html) => {
|
|
|
7285
7285
|
}
|
|
7286
7286
|
const protectionEnabled = <% if (typeof protection_enabled !== 'undefined') { %><%- JSON.stringify(protection_enabled === true) %><% } else { %>false<% } %>
|
|
7287
7287
|
n.Noty({
|
|
7288
|
-
timeout:
|
|
7288
|
+
timeout: false,
|
|
7289
|
+
progressBar: false,
|
|
7290
|
+
closeWith: ["click"],
|
|
7291
|
+
silent: true,
|
|
7292
|
+
callbacks: {
|
|
7293
|
+
onClick: () => {
|
|
7294
|
+
stripSearchParams(["install_protection"])
|
|
7295
|
+
}
|
|
7296
|
+
},
|
|
7289
7297
|
text: protectionEnabled
|
|
7290
7298
|
? "Protection beta is on for this app. You can change it later from the Run tab."
|
|
7291
7299
|
: "Protection beta is off for this app. You can change it later from the Run tab."
|
|
7292
7300
|
})
|
|
7293
|
-
stripSearchParams(["install_protection"])
|
|
7294
7301
|
}
|
|
7295
7302
|
maybeShowProtectionInstallToast()
|
|
7296
7303
|
const buildPluginLaunchFromQuery = () => {
|