Skip to content
Snippets Groups Projects
Unverified Commit 3d3b507a authored by adam-james's avatar adam-james Committed by GitHub
Browse files

Escaping quotation marks in a tru string to pass the linter (#21202)

parent df44d332
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
[metabase.util.i18n :refer [deferred-tru tru]]))
(defsetting subscription-allowed-domains
(deferred-tru "Allowed email address domain(s) for new Dashboard Subscriptions and Alerts. To specify multiple domains, separate each domain with a comma, with no space in between (e.g., "domain1,domain2"). To allow all domains, leave the field empty. This setting doesn't affect existing subscriptions.")
(deferred-tru "Allowed email address domain(s) for new Dashboard Subscriptions and Alerts. To specify multiple domains, separate each domain with a comma, with no space in between (e.g., \"domain1,domain2\"). To allow all domains, leave the field empty. This setting doesn't affect existing subscriptions.")
:visibility :public
;; this is a comma-separated string but we're not using `:csv` because it gets serialized to an array which makes it
;; inconvenient to use on the frontend.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment