Skip to content

Commit 7fb9e25

Browse files
ebm5025Ed Morgan
andauthored
Remove note adding to thread title (#235)
Co-authored-by: Ed Morgan <edwardmorgan706@gmail.com>
1 parent be679df commit 7fb9e25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/dkp-records/raid-report.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class RaidReport {
127127
public getThreadName(): string {
128128
const emoji = this.finished ? "✅" : this.allTicksHaveEvent ? "❕" : "❔";
129129
const label = every(this.ticks, (t) => t.hasEvent)
130-
? uniq(this.ticks.map(({ eventAbreviation, note }) => `${eventAbreviation} ${note}`)).join(
130+
? uniq(this.ticks.map(({ eventAbreviation }) => eventAbreviation)).join(
131131
", "
132132
)
133133
: `${this.filename.replace(/[^a-zA-Z]+/g, "")}?`;

0 commit comments

Comments
 (0)