Skip to content

Commit

Permalink
Fix Create Linked Ticket modal on Self Service Asset page
Browse files Browse the repository at this point in the history
The Create Linked Ticket modal on the Self Service Asset page was not
migrated to elevator themes. This patch fixes the issue.
  • Loading branch information
richieri-bps committed Oct 10, 2023
1 parent 96c105f commit f101896
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion share/html/SelfService/Asset/Helpers/CreateLinkedTicket
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,17 @@ $Asset
<%init>
my $asset = LoadAsset($Asset);
</%init>
<& /Asset/Elements/CreateLinkedTicket, AssetObj => $asset &>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"><&|/l&>Create Linked Ticket</&></h5>
<a href="javascript:void(0)" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</a>
</div>
<div class="modal-body">
<& /Asset/Elements/CreateLinkedTicket, AssetObj => $asset &>
</div>
</div>
</div>
% $m->abort;

0 comments on commit f101896

Please sign in to comment.