fix: reload tabIndex after tags expansion

This commit is contained in:
Antonella Sgarlatta
2021-06-02 18:59:27 -03:00
parent 595b44dfee
commit f9c2b19eac
2 changed files with 5 additions and 1 deletions

View File

@@ -134,6 +134,9 @@ export class ActiveNoteState {
}
isTagOverflowed(tag: SNTag): boolean {
if (this.tagsContainerExpanded) {
return false;
}
const tagElement = this.getTagElement(tag);
return tagElement ? this.isElementOverflowed(tagElement) : false;
}