Skip to content

Commit

Permalink
Fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 12, 2021
1 parent d945b04 commit 5b2c680
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/combination/name.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ export const getCombinationName = function (combination) {
}

const getCombinationNamePart = function ({ dimension: { messageName }, id }) {
return `${noteColor(messageName)} "${titleColor(id)}"`
return `${noteColor(messageName)} ${QUOTE}${titleColor(id)}${QUOTE}`
}

const QUOTE = noteColor('"')

0 comments on commit 5b2c680

Please sign in to comment.