From 21dfc131ad552e9504119f23cd6f309d1ad2f49d Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 28 Jan 2025 11:11:41 +0100 Subject: [PATCH] fix showing ui-secret in aio-interface Signed-off-by: Simon L. --- php/templates/containers.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 756b3f98..43468d84 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -283,7 +283,7 @@ (docs) {% endif %} {% if container.GetUiSecret() != '' %} - (password: {{ GetUiSecret.GetUiSecret() }} ) + (password: {{ container.GetUiSecret() }} ) {% endif %} {% elseif container.GetRunningState().value == 'running' %} @@ -293,7 +293,7 @@ (docs) {% endif %} {% if container.GetUiSecret() != '' %} - (password: {{ GetUiSecret.GetUiSecret() }} ) + (password: {{ container.GetUiSecret() }} ) {% endif %} {% else %} @@ -303,7 +303,7 @@ (docs) {% endif %} {% if container.GetUiSecret() != '' %} - (password: {{ GetUiSecret.GetUiSecret() }} ) + (password: {{ container.GetUiSecret() }} ) {% endif %} {% endif %}