1 parent be679df commit 7fb9e25Copy full SHA for 7fb9e25
1 file changed
src/features/dkp-records/raid-report.ts
@@ -127,7 +127,7 @@ export class RaidReport {
127
public getThreadName(): string {
128
const emoji = this.finished ? "✅" : this.allTicksHaveEvent ? "❕" : "❔";
129
const label = every(this.ticks, (t) => t.hasEvent)
130
- ? uniq(this.ticks.map(({ eventAbreviation, note }) => `${eventAbreviation} ${note}`)).join(
+ ? uniq(this.ticks.map(({ eventAbreviation }) => eventAbreviation)).join(
131
", "
132
)
133
: `${this.filename.replace(/[^a-zA-Z]+/g, "")}?`;
0 commit comments