🥅 Catch potential errors

This commit is contained in:
Alicia Sykes
2022-02-12 21:28:27 +00:00
parent ca9498ba4a
commit 04082763d3
3 changed files with 7 additions and 2 deletions

View File

@@ -244,6 +244,10 @@ export default {
},
/* Navigate to the section's single-section view page */
navigateToSection() {
if (!this.title) {
ErrorHandler('Cannot open section without a valid name');
return;
}
const parse = (section) => section.replace(' ', '-').toLowerCase().trim();
const sectionIdentifier = parse(this.title);
router.push({ path: `/home/${sectionIdentifier}` });