From 7d38525bd1a56d94f7d2347585064692ed62c74a Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Fri, 22 Aug 2025 22:39:55 -0600 Subject: [PATCH] Add `sync: false` example to plugin settings code --- examples/basic-demo/plugin.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/basic-demo/plugin.js b/examples/basic-demo/plugin.js index 1f94ce3..2c9cce9 100644 --- a/examples/basic-demo/plugin.js +++ b/examples/basic-demo/plugin.js @@ -32,7 +32,10 @@ exports.config = [ defaultVal: "", label: "Type a string", placeholder: "", - text: "Description text next to the input box" + text: "Description text next to the input box", + sync: false // Add sync: false to prevent automatically syncing this setting between + // PostalPoint installations (i.e. it's a device-specific setting, like a pairing code) + // If it's not present, or is any truthy value, it could be synced between PCs }, { type: "password",