Browse Source

remarque guillaume

Vincent GUFFON 3 years ago
parent
commit
4073aa330f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      composables/layout/Menus/websiteMenu.ts

+ 2 - 2
composables/layout/Menus/websiteMenu.ts

@@ -29,7 +29,7 @@ class WebsiteMenu extends BaseMenu implements Menu {
    */
   getMenu (): ItemMenu | null {
     if (!this.$store.state.profile.organization.website && this.$store.state.profile.access.isAdminAccess) {
-      return this.constructMenu('advanced_modification', {name: 'fa-globe-europe'}, this.getWebsite(this.$store.state.profile.organization) + '/typo3', false, undefined, true)
+      return this.constructMenu('advanced_modification', {name: 'fa-globe-americas'}, this.getWebsite(this.$store.state.profile.organization) + '/typo3', false, undefined, true)
     }
     return null
   }
@@ -49,7 +49,7 @@ class WebsiteMenu extends BaseMenu implements Menu {
       }
     })
 
-    return children.length > 0 ? this.constructMenu('website', {name: 'fa-globe-europe'}, undefined, undefined, children) : null
+    return children.length > 0 ? this.constructMenu('website', {name: 'fa-globe-americas'}, undefined, undefined, children) : null
   }
 
   getWebsite (organization: organizationState): string {