From ff9b4339940e468a6838b61c10e57a7b199f9874 Mon Sep 17 00:00:00 2001 From: Brian Peiris <brianpeiris@gmail.com> Date: Mon, 2 Apr 2018 12:41:23 -0700 Subject: [PATCH] fix selector url --- src/react-components/profile-entry-panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react-components/profile-entry-panel.js b/src/react-components/profile-entry-panel.js index e976b6184..1d7f61f54 100644 --- a/src/react-components/profile-entry-panel.js +++ b/src/react-components/profile-entry-panel.js @@ -86,7 +86,7 @@ class ProfileEntryPanel extends Component { className="profile-entry__avatar-selector" src={ /* HACK: Have to account for the smoke test server like this. Feels wrong though. */ - `$/{/smoke/i.test(location.hostname) ? "smoke-" : ""}avatar-selector.html#avatar_id=${ + `/${/smoke/i.test(location.hostname) ? "smoke-" : ""}avatar-selector.html#avatar_id=${ this.state.avatar_id }` } -- GitLab