Explorar o código

timeline staff

Benjamin Kornblum hai 8 meses
pai
achega
7f3dd628b0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/stores/footer-content-pages.ts

+ 1 - 1
src/stores/footer-content-pages.ts

@@ -17,7 +17,7 @@ export const useFooterLinksStore = defineStore('footerLinks',{
 
     },
     getLinkByLabel(oldLabel:string){
-      return this.links.find((link) => link.Label == oldLabel)
+      return this.links.find((link:any) => (link.Label as string) == oldLabel)
 
     },