Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/projects/project_new.js')
-rw-r--r--app/assets/javascripts/projects/project_new.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/assets/javascripts/projects/project_new.js b/app/assets/javascripts/projects/project_new.js
index 9ca1a26b3ac..d65e73a3f9c 100644
--- a/app/assets/javascripts/projects/project_new.js
+++ b/app/assets/javascripts/projects/project_new.js
@@ -115,35 +115,35 @@ const bindEvents = () => {
const templates = {
rails: {
text: 'Ruby on Rails',
- icon: '.template-option svg.icon-rails',
+ icon: '.template-option .icon-rails',
},
express: {
text: 'NodeJS Express',
- icon: '.template-option svg.icon-node-express',
+ icon: '.template-option .icon-express',
},
spring: {
text: 'Spring',
- icon: '.template-option svg.icon-java-spring',
+ icon: '.template-option .icon-spring',
},
hugo: {
text: 'Pages/Hugo',
- icon: '.template-option svg.icon-pages-hugo',
+ icon: '.template-option .icon-hugo',
},
jekyll: {
text: 'Pages/Jekyll',
- icon: '.template-option svg.icon-pages-jekyll',
+ icon: '.template-option .icon-jekyll',
},
plainhtml: {
text: 'Pages/Plain HTML',
- icon: '.template-option svg.icon-pages-plainhtml',
+ icon: '.template-option .icon-plainhtml',
},
gitbook: {
text: 'Pages/GitBook',
- icon: '.template-option svg.icon-pages-gitbook',
+ icon: '.template-option .icon-gitbook',
},
hexo: {
text: 'Pages/Hexo',
- icon: '.template-option svg.icon-pages-hexo',
+ icon: '.template-option .icon-hexo',
},
};