mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 00:20:07 +00:00
[TS] Enable noUnusedParameters (#3110)
This commit is contained in:
@@ -240,7 +240,7 @@ export class ChangeTracker {
|
||||
true
|
||||
)
|
||||
|
||||
window.addEventListener('keyup', (e) => {
|
||||
window.addEventListener('keyup', () => {
|
||||
if (keyIgnored) {
|
||||
keyIgnored = false
|
||||
logger.debug('checkState on keyup')
|
||||
@@ -352,7 +352,7 @@ export class ChangeTracker {
|
||||
})
|
||||
}
|
||||
|
||||
static bindInput(app: ComfyApp, activeEl: Element | null): boolean {
|
||||
static bindInput(_app: ComfyApp, activeEl: Element | null): boolean {
|
||||
if (
|
||||
!activeEl ||
|
||||
activeEl.tagName === 'CANVAS' ||
|
||||
|
||||
Reference in New Issue
Block a user