From 6309300eb6ad82edaac0313878b99001935aa11b Mon Sep 17 00:00:00 2001 From: Lishid Date: Thu, 22 Sep 2022 12:48:23 -0400 Subject: [PATCH] Fix user-journey leaking css This fixes a CSS syntax error that causes the CSS parser to soft-fail, which leads to the later CSS (custom styles) to not properly append the `#id` to them. --- src/diagrams/user-journey/styles.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/diagrams/user-journey/styles.js b/src/diagrams/user-journey/styles.js index b29e18bf3..998a73894 100644 --- a/src/diagrams/user-journey/styles.js +++ b/src/diagrams/user-journey/styles.js @@ -132,8 +132,6 @@ const getStyles = (options) => .actor-5 { ${options.actor5 ? `fill: ${options.actor5}` : ''}; } - - } `; export default getStyles;