We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d953fa commit ffaa0e7Copy full SHA for ffaa0e7
packages/mgt-components/src/components/mgt-todo/mgt-todo.ts
@@ -209,6 +209,7 @@ export class MgtTodo extends MgtTasksBase {
209
210
const cancelIcon = html`
211
<fluent-button
212
+ aria-label=${this.strings.cancelAddingTask}
213
class="task-cancel-icon"
214
@click="${this.clearNewTaskData}">
215
${getSvg(SvgIcon.Cancel)}
packages/mgt-components/src/components/mgt-todo/strings.ts
@@ -20,5 +20,6 @@ export const strings = {
20
deleteTaskLabel: 'Delete Task',
21
dueDate: 'Due date',
22
newTaskDateInputLabel: 'New Task Date Input',
23
- newTaskNameInputLabel: 'New Task Name Input'
+ newTaskNameInputLabel: 'New Task Name Input',
24
+ cancelAddingTask: 'Cancel adding a new task'
25
};
0 commit comments