We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ef8bd8 commit 36968b2Copy full SHA for 36968b2
src/components/ProjectKanbanView.ts
@@ -9811,7 +9811,7 @@ export class ProjectKanbanView {
9811
// Use valid <span> tags (no stray spaces in tag names), and keep layout compact
9812
button.innerHTML = `
9813
<span style="font-size: 16px; margin-right: 8px;">${option.icon}</span>
9814
- <span>${option.label} (${order === 'asc' ? i18n('ascendingOrder') + '↑' : i18n('descendingOrder') + '↓'})</span>
+ <span>${option.label} (${order === 'asc' ? i18n('ascendingOrder') : i18n('descendingOrder')})</span>
9815
`;
9816
button.addEventListener('click', async () => {
9817
this.currentSort = option.key;
0 commit comments