focus autocomplete on new tab even if there are workspaces, fixes #3083

This commit is contained in:
zadam 2022-08-23 22:32:27 +02:00
parent 80dcb45415
commit 09cfaeb9c4

View File

@ -83,10 +83,8 @@ export default class EmptyTypeWidget extends TypeWidget {
); );
} }
if (workspaceNotes.length === 0) {
this.$autoComplete this.$autoComplete
.trigger('focus') .trigger('focus')
.trigger('select'); .trigger('select');
} }
} }
}