Skip to content

Commit

Permalink
Fixing Subtask Link not opening on same page
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelfolaron committed Feb 9, 2024
1 parent 1cea9db commit 3177a3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Domain/Tickets/Templates/partials/subtasks.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</div>
@endif

<a href="{{ BASE_URL }}#/tickets/showTicket/{{ $subticket['id'] }}">{{ $subticket['headline'] }}</a>
<a href="#/tickets/showTicket/{{ $subticket['id'] }}">{{ $subticket['headline'] }}</a>

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/Domain/Tickets/Templates/showKanban.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
<?php } ?>

<?php if ($row["subtaskCount"] > 0) {?>
<a id="subtaskLink_<?php echo $row["id"];?>" href="<?=CURRENT_URL ?>?tab=subtasks#/tickets/showTicket/<?php echo $row["id"];?>" class="subtaskLineLink"> <span class="fa fa-diagram-successor"></span> <?php echo $row["subtaskCount"] ?></a>&nbsp;
<a id="subtaskLink_<?php echo $row["id"];?>" href="#/tickets/showTicket/<?php echo $row["id"];?>" class="subtaskLineLink"> <span class="fa fa-diagram-successor"></span> <?php echo $row["subtaskCount"] ?></a>&nbsp;
<?php } ?>
<?php if ($row['tags'] != '') {?>
<?php $tagsArray = explode(",", $row['tags']); ?>
Expand Down

0 comments on commit 3177a3f

Please sign in to comment.