mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 08:15:00 -04:00
eslint fixes
This commit is contained in:
parent
9ea785fc63
commit
ab8b48c437
5 changed files with 10 additions and 9 deletions
|
@ -31,9 +31,9 @@ export class COperationList extends HTMLElement {
|
|||
this.isCloneable = isCloneable;
|
||||
this.icon = icon;
|
||||
|
||||
window.addEventListener("operationadd", this.handleChange.bind(this))
|
||||
window.addEventListener("operationremove", this.handleChange.bind(this))
|
||||
window.addEventListener("favouritesupdate", this.handleChange.bind(this))
|
||||
window.addEventListener("operationadd", this.handleChange.bind(this));
|
||||
window.addEventListener("operationremove", this.handleChange.bind(this));
|
||||
window.addEventListener("favouritesupdate", this.handleChange.bind(this));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -180,7 +180,7 @@ export class COperationList extends HTMLElement {
|
|||
if (li.classList.contains(`${className}`)) {
|
||||
li.classList.remove(`${className}`);
|
||||
}
|
||||
}))
|
||||
}));
|
||||
|
||||
if (srcListItems.length !== 0) {
|
||||
srcListItems.forEach((item => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue