-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Adds a sidebar to the Commit Graph #3506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
8c80ee1
to
666a791
Compare
timestamp: number; | ||
}, | ||
> extends GlElement { | ||
@property({ type: String }) name!: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add delegatesFocus
this since the App itself doesn't need to be focusable:
static override shadowRootOptions: ShadowRootInit = {
...LitElement.shadowRootOptions,
delegatesFocus: true,
};
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do
document.querySelectorAll('a').forEach(a => { | ||
if (a.href === a.title) { | ||
a.removeAttribute('title'); | ||
} | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should just do this in GlElement
? Though it could add up to a lot of DOM work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ugh, I hate to need every component to do this, and vscode only does it once on load
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if we even need this in Shadow DOM
610f8b6
to
dd295ec
Compare
Adds ipc & logging context for components
dd295ec
to
f9eb66e
Compare
No description provided.