Skip to content

Commit c42b762

Browse files
committed
Strict null
1 parent 905f995 commit c42b762

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ class WelcomePage {
312312
if (!ul) {
313313
return;
314314
}
315-
const moreRecent = ul.querySelector('.moreRecent');
315+
const moreRecent = ul.querySelector('.moreRecent')!;
316316
const workspacesToShow = workspaces.slice(0, 5);
317317
const updateEntries = () => {
318318
const listEntries = this.createListEntries(workspacesToShow);

0 commit comments

Comments
 (0)