Skip to content

Commit

Permalink
runfix: don't escape folder name char (#17479) (#17488)
Browse files Browse the repository at this point in the history
Co-authored-by: Patryk Górka <[email protected]>
  • Loading branch information
V-Gira and PatrykBuniX authored May 30, 2024
1 parent 0f0b953 commit a67298d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/view_model/ListViewModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export class ListViewModel {
if (customLabel) {
entries.push({
click: () => conversationLabelRepository.removeConversationFromLabel(customLabel, conversationEntity),
label: t('conversationsPopoverRemoveFrom', customLabel.name),
label: t('conversationsPopoverRemoveFrom', customLabel.name, {}, true),
});
}

Expand Down

0 comments on commit a67298d

Please sign in to comment.