Fixed bug causing error for adding navbar items to empty list

This commit is contained in:
Alicia Sykes 2021-05-29 23:02:00 +01:00
parent d3ff42a5e1
commit 9020caa4e3
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ export default {
title: this.config.pageInfo.title,
description: this.config.pageInfo.description,
footerText: this.config.pageInfo.footerText,
navLinks: this.config.pageInfo.navLinks,
navLinks: this.config.pageInfo.navLinks || [],
},
};
},