mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
Add breadcrumb
This commit is contained in:
@@ -14,7 +14,8 @@ function route (app) {
|
||||
return next();
|
||||
}
|
||||
res.render('task/delete', {
|
||||
task: presentTask(task)
|
||||
task: presentTask(task),
|
||||
isTaskPage: true
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@@ -22,7 +22,8 @@ function route (app) {
|
||||
task: presentTask(task),
|
||||
results: presentResultList(results.map(presentResult)),
|
||||
mainResult: task.lastResult || null,
|
||||
added: (typeof req.query.added !== 'undefined')
|
||||
added: (typeof req.query.added !== 'undefined'),
|
||||
isTaskPage: true
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user