Fix: botones se salen de la pantalla

modified:   Entidades/Grupo.cs
	modified:   Front/src/lib/NavBarAutocompletable.svelte
	new file:   Front/src/lib/css/popup.css
	modified:   Modelo/RepositorioPermisos.cs
This commit is contained in:
2024-11-24 12:59:39 -03:00
parent 80c778d91a
commit feb4db86c0
5 changed files with 70 additions and 38 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Entidades;
@@ -9,6 +10,7 @@ public partial class Grupo
public string Nombre { get; set; } = null!;
[JsonIgnore]
public virtual ICollection<Cliente> Idclientes { get; set; } = new List<Cliente>();
public virtual ICollection<Permiso> Idpermisos { get; set; } = new List<Permiso>();