summaryrefslogtreecommitdiff
path: root/web/src/containers/jobs/Jobs.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/containers/jobs/Jobs.jsx')
-rw-r--r--web/src/containers/jobs/Jobs.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/containers/jobs/Jobs.jsx b/web/src/containers/jobs/Jobs.jsx
index d7ab4bc69..71395f1d1 100644
--- a/web/src/containers/jobs/Jobs.jsx
+++ b/web/src/containers/jobs/Jobs.jsx
@@ -62,7 +62,7 @@ class JobsList extends React.Component {
const createNode = (job, extra) => ({
text: (
<React.Fragment>
- <Link to={linkPrefix + job.name}>{job.name}</Link>
+ <Link to={linkPrefix + encodeURIComponent(job.name)}>{job.name}</Link>
{extra && (<span> ({extra})</span>)}
{job.description && (
<span style={{marginLeft: '10px'}}>{job.description}</span>