From 83a73b27462150249843821115191ca86907272c Mon Sep 17 00:00:00 2001 From: estrogen elf <87099578+BlossomiShymae@users.noreply.github.com> Date: Mon, 16 Jun 2025 03:27:59 -0500 Subject: [PATCH] fix: schema nav position --- Needlework.Net/ViewModels/Pages/Schemas/SchemasViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Needlework.Net/ViewModels/Pages/Schemas/SchemasViewModel.cs b/Needlework.Net/ViewModels/Pages/Schemas/SchemasViewModel.cs index 1a00d2f..990d6c0 100644 --- a/Needlework.Net/ViewModels/Pages/Schemas/SchemasViewModel.cs +++ b/Needlework.Net/ViewModels/Pages/Schemas/SchemasViewModel.cs @@ -21,7 +21,7 @@ namespace Needlework.Net.ViewModels.Pages.Schemas private List _schemas = []; - public SchemasViewModel(DocumentService documentService) : base("Schemas", "fa-solid fa-file-lines") + public SchemasViewModel(DocumentService documentService) : base("Schemas", "fa-solid fa-file-lines", -100) { _documentService = documentService; }