瀏覽代碼

timeline staff

Benjamin Kornblum 8 月之前
父節點
當前提交
7f3dd628b0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
 
     },