Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CuddlyBunion341 committed Jan 14, 2025
1 parent 58b108a commit a3e66fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/helpers/timer_sessions_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ def issue_information(issue)
subject = issue.subject

[
issue_information(issue),
"[#{issue.project.name}] #{truncated_subject}#{subject_label_trail(subject)}"
issue_identifier(issue),
"[#{issue.project.name}] #{truncated_subject(subject)}#{subject_label_trail(subject)}"
].join(': ')
end

def issue_information(issue)
def issue_identifier(issue)
"[#{issue.project.name}] #{issue.id}"
end

Expand Down

0 comments on commit a3e66fe

Please sign in to comment.