Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ export class MgtPlanner extends MgtTemplatedTaskComponent {
<span>${this.getPlanTitle(this._currentGroup)}</span>
</span>`
: html`
<fluent-select>
<fluent-select aria-label="${this.strings.selectPlan}">
<span slot="start">${this.renderPlannerIcon(iconColor)}</span>
${this._groups.length > 0 ? groupOptions : html`<fluent-option selected>No groups found</fluent-option>`}
</fluent-select>`;
Expand Down Expand Up @@ -853,7 +853,7 @@ export class MgtPlanner extends MgtTemplatedTaskComponent {
</span>
`
: html`
<fluent-select>
<fluent-select aria-label="${this.strings.selectBucket}">
<span slot="start">${this.renderBucketIcon(iconColor)}</span>
${folders.length > 0 ? folderOptions : html`<fluent-option selected>No folders found</fluent-option>`}
</fluent-select>`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ export const strings = {
plansSelfAssigned: 'All Plans',
bucketNotFound: 'Bucket not found',
bucketsSelfAssigned: 'All Tasks',
baseSelfAssigned: 'Assigned to Me'
baseSelfAssigned: 'Assigned to Me',
selectPlan: 'Select plan',
selectBucket: 'Select bucket'
};
Loading