diff --git a/LANCommander/Components/ScriptEditor.razor b/LANCommander/Components/ScriptEditor.razor index a2c2a0c..a87ce20 100644 --- a/LANCommander/Components/ScriptEditor.razor +++ b/LANCommander/Components/ScriptEditor.razor @@ -4,75 +4,12 @@ @using LANCommander.Models @using LANCommander.Services @using System.IO.Compression; +@using Microsoft.EntityFrameworkCore; @inject ScriptService ScriptService @inject ModalService ModalService @inject IMessageService MessageService -@{ - RenderFragment Footer = - @; -} - -
- - @foreach (var group in Snippets.Select(s => s.Group).Distinct()) - { - - - - @foreach (var snippet in Snippets.Where(s => s.Group == group)) - { - - @snippet.Name - - } - - - - - - - - } - - @if (ArchiveId != Guid.Empty) - { - - } - - - - - - - - - - - - - - - - - - Requires Admin - - - -