From ce6708781166265dad2a7bf86cba2bf016d9276a Mon Sep 17 00:00:00 2001 From: dkanada Date: Wed, 17 Jun 2020 02:15:05 +0900 Subject: [PATCH] fix quotes in repository controller --- src/controllers/dashboard/plugins/repositories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/dashboard/plugins/repositories.js b/src/controllers/dashboard/plugins/repositories.js index a4d6d886e0..3087cdd927 100644 --- a/src/controllers/dashboard/plugins/repositories.js +++ b/src/controllers/dashboard/plugins/repositories.js @@ -66,7 +66,7 @@ function getRepositoryHtml(repository) { html += ''; html += ''; html += '
'; - html += `

${repository.Name}

`; + html += `

${repository.Name}

`; html += `
${repository.Url}
`; html += '
'; html += ``;