Skip to content

Commit

Permalink
Merge pull request #4 from TheROPFather/TheROPFather-fixglue
Browse files Browse the repository at this point in the history
Fix join() passing glue after array deprecation.
  • Loading branch information
eduardoarandah authored Mar 4, 2020
2 parents 49e5583 + d10b342 commit 2bfc2a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/views/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
$('.stack-content').each(function() {
var $this = $(this);
var html = $this.html().trim()
.replace(/({!! join(log_styler()->toHighlight(), '|') !!})/gm, '<strong>$1</strong>');
.replace(/({!! join('|', log_styler()->toHighlight()) !!})/gm, '<strong>$1</strong>');
$this.html(html);
});
Expand Down

0 comments on commit 2bfc2a6

Please sign in to comment.