Skip to content

Commit

Permalink
ladybirdweb#8282 :: Added modal trigger logic for assign & edit ticke…
Browse files Browse the repository at this point in the history
…t buttons
  • Loading branch information
Phaniraj35 committed Feb 27, 2024
1 parent 713868c commit 68e7dbc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ class="nav-link active"
if ($group->can_edit_ticket == 1) {
?>
<button type="button" class="btn btn-sm btn-default btn-tool">
<button type="button" class="btn btn-sm btn-default btn-tool" data-toggle="modal" data-target="#Edit">

<i class="fas fa-edit" style="color:green;"></i> {{trans('lang.edit')}}

</button> <?php } ?>

<?php if ($group->can_assign_ticket == 1) { ?>
<button type="button" class="btn btn-sm btn-default btn-tool">
<button type="button" class="btn btn-sm btn-default btn-tool" data-toggle="modal" data-target="#assign{{$tickets->id}}">

<i class="fas fa-hand-point-right" style="color:orange;"></i> {{trans('lang.assign')}}

Expand Down

0 comments on commit 68e7dbc

Please sign in to comment.