changeset 7817e8c48d79 in modules/web_shop_shopify:default
details:
https://hg.tryton.org/modules/web_shop_shopify?cmd=changeset&node=7817e8c48d79
description:
Add option to remove leading and trailing white spaces from char
issue7914
review340511008
diffstat:
web.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (15 lines):
diff -r b42952145c91 -r 7817e8c48d79 web.py
--- a/web.py Mon May 02 18:00:47 2022 +0200
+++ b/web.py Mon Sep 19 21:25:55 2022 +0200
@@ -36,9 +36,9 @@
shopify_url = fields.Char("Shop URL", states=_states)
shopify_version = fields.Selection(
'get_shopify_versions', "Version", states=_states)
- shopify_password = fields.Char("Password", states=_states)
+ shopify_password = fields.Char("Password", states=_states, strip=False)
shopify_webhook_shared_secret = fields.Char(
- "Webhook Shared Secret",
+ "Webhook Shared Secret", strip=False,
states={
'invisible': _states['invisible'],
})