diff --git a/CHANGES.md b/CHANGES.md index 5797b1864..a2791c2bc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,7 @@ - Fix problem with shadows and blur on multiple selection - Fix problem with redo shortcut - Fix search field has implemented shared styles for "close icon" and "search icon" [Taiga #4927](https://tree.taiga.io/project/penpot/issue/4927) +- Fix Handling correctly slashes "/" in emails [Taiga #4906](https://tree.taiga.io/project/penpot/issue/4906) - Fix Change text color from selected colors [Taiga #4933](https://tree.taiga.io/project/penpot/issue/4933) ## 1.17.2 diff --git a/common/src/app/common/spec.cljc b/common/src/app/common/spec.cljc index 76deea9f4..be64cde76 100644 --- a/common/src/app/common/spec.cljc +++ b/common/src/app/common/spec.cljc @@ -112,7 +112,7 @@ ;; --- SPEC: email -(def email-re #"[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+") +(def email-re #"[a-zA-Z0-9_.+-\\\\]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+") (defn parse-email [s]