diff --git a/backend/app/version.py b/backend/app/version.py index 1b795ba..7ddb07e 100644 --- a/backend/app/version.py +++ b/backend/app/version.py @@ -1,5 +1,5 @@ """Единый источник версии SAC (API, health, логи, OpenAPI).""" APP_NAME = "Security Alert Center" -APP_VERSION = "0.7.5" +APP_VERSION = "0.8.0" APP_VERSION_LABEL = f"{APP_NAME} v.{APP_VERSION}" diff --git a/frontend/src/style.css b/frontend/src/style.css index 4821602..b7dd59a 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -17,6 +17,17 @@ a { color: #7eb8ff; } +.sac-row-link { + color: #7eb8ff; + cursor: pointer; + text-decoration: underline; + text-underline-offset: 2px; +} + +.sac-row-link:hover { + color: #a8d4ff; +} + .layout { width: 100%; max-width: none; diff --git a/frontend/src/version.ts b/frontend/src/version.ts index 5a0af84..b05fce3 100644 --- a/frontend/src/version.ts +++ b/frontend/src/version.ts @@ -1,3 +1,3 @@ export const APP_NAME = "Security Alert Center"; -export const APP_VERSION = "0.7.5"; +export const APP_VERSION = "0.8.0"; export const APP_VERSION_LABEL = `${APP_NAME} v.${APP_VERSION}`; diff --git a/frontend/src/views/HostsView.vue b/frontend/src/views/HostsView.vue index bd8df5f..a9937b6 100644 --- a/frontend/src/views/HostsView.vue +++ b/frontend/src/views/HostsView.vue @@ -32,15 +32,14 @@ {{ h.id }} - + {{ h.display_name || h.hostname }} - + {{ h.hostname }} - {{ h.hostname }} {{ h.product_version || "—" }} {{ h.os_family }} @@ -276,13 +275,3 @@ onMounted(() => { loadHosts(); }); - -