diff --git a/Iceshrimp.Frontend/Pages/Settings/About.razor b/Iceshrimp.Frontend/Pages/Settings/About.razor index b3fda7dc..28e6b674 100644 --- a/Iceshrimp.Frontend/Pages/Settings/About.razor +++ b/Iceshrimp.Frontend/Pages/Settings/About.razor @@ -1,5 +1,6 @@ @page "/settings/about" @using System.Text +@using Iceshrimp.Assets.PhosphorIcons @using Iceshrimp.Frontend.Core.InMemoryLogger @using Iceshrimp.Frontend.Core.Services @using Iceshrimp.Frontend.Localization @@ -12,34 +13,35 @@ @inject IJSRuntime Js; @inject InMemoryLogService LogService; -
-

@Loc["Version Information"]

- Iceshrimp.NET - - @Version.Version - - Codename - - @Version.Codename - - @if (Version.CommitHash != null) - { - Commit +
+
+

@Loc["Version Information"]

+ Iceshrimp.NET - @Version.CommitHash + @Version.Version - } - .NET Runtime - - @Environment.Version - + Codename + + @Version.Codename + + @if (Version.CommitHash != null) + { + Commit + + @Version.CommitHash + + } + .NET Runtime + + @Environment.Version + +
+
+

@Loc["Logs"]

+ @Loc["These logs may contain sensitive information, please do not post them publicly.\n" + "Providing them to developers upon request may help with debugging."] + +
-
-

@Loc["Logs"]

- @Loc["These logs may contain sensitive information, please do not post them publicly.\n" + "Providing them to developers upon request may help with debugging."] - -
- @code { private IJSInProcessObjectReference _module = null!;