Fixed font awesome not loading

This commit is contained in:
Alicia Sykes 2021-04-17 17:48:09 +01:00
parent 8e7a99a2e7
commit f0106ea4b2
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ export default {
let isFound = false;
this.sections.forEach((section) => {
section.items.forEach((item) => {
if (item.icon && item.icon.includes('fas')) isFound = true;
if (item.icon && item.icon.includes('fa-')) isFound = true;
});
});
return isFound;