Skip to content

Commit

Permalink
re-order about
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu committed Jan 2, 2025
1 parent e5dbfbe commit 8512728
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/src/admin/AdminInterface/AboutModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,19 @@ export class AboutModal extends WithLicenseSummary(WithBrandConfig(ModalButton))
>${version.buildHash}</a
>`;
}
return [
const entries: [string, string | TemplateResult][] = [
[msg("Version"), version.versionCurrent],
[msg("UI Version"), VERSION],
[msg("Build"), build],
[msg("Python version"), status.runtime.pythonVersion],
[msg("Platform"), status.runtime.platform],
[msg("Kernel"), status.runtime.uname],
[
msg("OpenSSL"),
`${status.runtime.opensslVersion} ${status.runtime.opensslFipsEnabled ? "FIPS" : ""}`,
],
[msg("Platform"), status.runtime.platform],
[msg("Kernel"), status.runtime.uname],
];
return entries;
}

renderModal() {
Expand Down

0 comments on commit 8512728

Please sign in to comment.