Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsunnavy <sunnavy@bestpractical.com>2022-10-06 12:21:08 +0300
committersunnavy <sunnavy@bestpractical.com>2022-11-01 22:08:39 +0300
commit92f71ec68e1fa1e0170920a438ce9d0ed0c1e895 (patch)
treedb6565a2ea08a37d8bcf7e10b4ab6a42e688b7cb
parent3239597886e169ef4a91447c5f0eaeec90e53003 (diff)
Remove unnecessary current-value span
The current-value span is used in forms to align the label/value, so it's not needed when rows are not in forms.
-rw-r--r--share/html/Admin/Actions/Elements/ShowBasics8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/html/Admin/Actions/Elements/ShowBasics b/share/html/Admin/Actions/Elements/ShowBasics
index 75bbf76607..75a30e7add 100644
--- a/share/html/Admin/Actions/Elements/ShowBasics
+++ b/share/html/Admin/Actions/Elements/ShowBasics
@@ -46,16 +46,16 @@
%#
%# END BPS TAGGED BLOCK }}}
<&| /Elements/LabeledValue, Label => loc("Name") &>
- <span class="current-value"><% $ARGS{"Name"} || $Action->Name || '' %></span>
+ <% $ARGS{"Name"} || $Action->Name || '' %>
</&>
<&| /Elements/LabeledValue, Label => loc("Description") &>
- <span class="current-value"><% $ARGS{"Description"} || $Action->Description || '' %></span>
+ <% $ARGS{"Description"} || $Action->Description || '' %>
</&>
<&| /Elements/LabeledValue, Label => loc("Action Module") &>
- <span class="current-value"><% $ARGS{"ExecModule"} || $Action->ExecModule || ''%></span>
+ <% $ARGS{"ExecModule"} || $Action->ExecModule || ''%>
</&>
<&| /Elements/LabeledValue, Label => loc("Parameters to Pass") &>
- <span class="current-value"><% $ARGS{"Argument"} || $Action->Argument || '' %></span>
+ <% $ARGS{"Argument"} || $Action->Argument || '' %>
</&>
<%ARGS>