Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor() {
super();
upgradeProperty(this, 'job');
upgradeProperty(this, 'commit');
// Bits of state that get reflected to/from the URL query string.
this._query = {
job: '',
commit: '',
}
}
connectedCallback() {
upgradeProperty(this, 'selection');
upgradeProperty(this, 'disabled');
this.addEventListener('click', this._click);
this._obs.observe(this, {
childList: true,
});
this._bubbleUp();
}
connectedCallback() {
upgradeProperty(this, 'choices');
upgradeProperty(this, 'chosen');
this._render();
this._dialog = this.firstElementChild;
dialogPolyfill.registerDialog(this._dialog);
}
connectedCallback() {
upgradeProperty(this, 'selection');
upgradeProperty(this, 'disabled');
this.addEventListener('click', this._click);
this._obs.observe(this, {
childList: true,
});
this._bubbleUp();
}
connectedCallback() {
upgradeProperty(this, 'value');
this.render();
}
connectedCallback() {
upgradeProperty(this, 'selection');
upgradeProperty(this, 'disabled');
this.addEventListener('click', this._click);
this._obs.observe(this, {
childList: true,
});
this._bubbleUp();
}
_upgradeProperty(name) {
upgradeProperty(this, name);
}
connectedCallback() {
upgradeProperty(this, 'choices');
upgradeProperty(this, 'chosen');
this._render();
this._dialog = this.firstElementChild;
dialogPolyfill.registerDialog(this._dialog);
}
connectedCallback() {
upgradeProperty(this, 'data');
this.render();
}
connectedCallback(): void {
super.connectedCallback();
upgradeProperty(this, 'filterByUser');
this._render();
}