From 368b7007f6aa6ce5c7fd3baf5345defda78fc21c Mon Sep 17 00:00:00 2001 From: aserrador Date: Fri, 29 May 2026 01:30:54 -0500 Subject: [PATCH] =?UTF-8?q?refactor:=20reemplazar=20iconos=20SVG=20por=20m?= =?UTF-8?q?di=20gen=C3=A9ricos=20en=20NavBar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Eliminar import de tryton-icon.svg - Reemplazar trytonIcon por 'mdi-sync' en items de Tryton - Restaurar :prepend-icon (todos los iconos son ahora mdi strings) --- src/components/NavBar.vue | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 38490f2..4a0bdc6 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -57,13 +57,9 @@ v-for="item in menuItems" :key="item.title" :title="item.title" + :prepend-icon="item.icon" @click="navigate(item.route)" - > - - + > @@ -71,13 +67,9 @@ v-for="item in menuAdminItems" :key="item.title" :title="item.title" + :prepend-icon="item.icon" @click="navigateAdmin(item.route)" - > - - + > @@ -85,7 +77,6 @@