fix: project views and icons for intros (#36811)

This commit is contained in:
mrugesh
2019-09-19 12:44:58 +05:30
committed by Ahmad Abdolsaheb
parent 93360f4e01
commit 5d92b3c668
16 changed files with 155 additions and 166 deletions

View File

@ -5,15 +5,15 @@ const { viewTypes } = require('../challengeTypes');
const backend = path.resolve(
__dirname,
'../../src/templates/Challenges/backend/Show.js'
'../../src/templates/Challenges/projects/backend/Show.js'
);
const classic = path.resolve(
__dirname,
'../../src/templates/Challenges/classic/Show.js'
);
const project = path.resolve(
const frontend = path.resolve(
__dirname,
'../../src/templates/Challenges/project/Show.js'
'../../src/templates/Challenges/projects/frontend/Show.js'
);
const intro = path.resolve(
__dirname,
@ -28,7 +28,7 @@ const views = {
backend,
classic,
modern: classic,
project
frontend
// quiz: Quiz
};