-
- Downloads
[FIX] web: cannot debounce prototype function of Widget
The `_onClickStage` method of the `FieldStatus` was debounced. This can be done but not directly on prototype functions because they are shared between each instances (just called with different `this`). This does not produced any bug because there never are two instances of this class which are used at the same time in the web client. The problem is however present when trying to make tests as clicks on different statusbar buttons in two different tests were filtered by the debouncing.
Please register or sign in to comment