Skip to content

Commit

Permalink
fix showing ui-secret in aio-interface
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L. <[email protected]>
  • Loading branch information
szaimen committed Jan 28, 2025
1 parent 6f2ae62 commit 21dfc13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions php/templates/containers.twig
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
(password: {{ container.GetUiSecret() }} )
{% endif %}
</span>
{% elseif container.GetRunningState().value == 'running' %}
Expand All @@ -293,7 +293,7 @@
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
(password: {{ container.GetUiSecret() }} )
{% endif %}
</span>
{% else %}
Expand All @@ -303,7 +303,7 @@
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
(password: {{ container.GetUiSecret() }} )
{% endif %}
</span>
{% endif %}
Expand Down

0 comments on commit 21dfc13

Please sign in to comment.