Remove the really annoying blur on the incrementer component

This commit is contained in:
Oliver-Akins 2024-04-13 17:08:52 -06:00
parent 118dcfb71c
commit 8c83d304b7

View file

@ -127,9 +127,6 @@ export class DotDungeonIncrementer extends StyledShadowElement(HTMLElement) {
this.#input.value = value;
this.value = value;
this.dispatchEvent(new Event(`change`, { bubbles: true }));
// NOTE: This may be really annoying, in that case, remove it later
this.blur();
};
/** @param {Event} $e */