Skip to content

Commit 9d045b3

Browse files
committed
annotate todo
1 parent dc269a9 commit 9d045b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/base/browser/ui/checkbox/checkbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class Checkbox extends Widget {
101101
if (this._opts.icon) {
102102
classes.push(this._opts.icon.classNames);
103103
} else {
104-
classes.push('codicon'); // todo: remove once codicon fully adopted
104+
classes.push('codicon'); // todo@aeschli: remove once codicon fully adopted
105105
}
106106
if (this._opts.actionClassName) {
107107
classes.push(this._opts.actionClassName);

src/vs/base/browser/ui/dropdown/dropdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ export class DropdownMenuActionViewItem extends BaseActionViewItem {
295295

296296
render(container: HTMLElement): void {
297297
const labelRenderer: ILabelRenderer = (el: HTMLElement): IDisposable | null => {
298-
this.element = append(el, $('a.action-label.codicon')); // TODO: remove codicon, should come through `this.clazz`
298+
this.element = append(el, $('a.action-label.codicon')); // todo@aeschli: remove codicon, should come through `this.clazz`
299299
if (this.clazz) {
300300
addClasses(this.element, this.clazz);
301301
}

0 commit comments

Comments
 (0)