From 4996f247e881798e480255187374a75c49ecfaf7 Mon Sep 17 00:00:00 2001 From: Dat Date: Mon, 10 Aug 2026 15:21:44 +0200 Subject: [PATCH] fix(ui): Fix title for current policy Bug: T434191 --- src/components/Pages/Components/PolicyNavigationPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Pages/Components/PolicyNavigationPanel.vue b/src/components/Pages/Components/PolicyNavigationPanel.vue index d711e6ef..ff5f1cc6 100644 --- a/src/components/Pages/Components/PolicyNavigationPanel.vue +++ b/src/components/Pages/Components/PolicyNavigationPanel.vue @@ -146,7 +146,7 @@ export default { }, titleForPolicy ({ activeFrom, isCurrentPolicy, isUpcomingPolicy }) { if (isCurrentPolicy) { - return 'Current version' + return `${activeFrom} (current)` } if (isUpcomingPolicy) { return 'Upcoming version'