You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are the behaviors I'd naïvely expect given the names of the config properties, which are otherwise undocumented:
// Expected: The choice is shown as soon as I type **anything**// Actual: It shows only when the input matches the choice's name ("123").// You also cannot submit arbitrary inputs!awaitarg('{hideWithoutInput: true}',[{name: '123',hideWithoutInput: true}]);// Expected: The choice is shown as soon as there is **any** input. // Actual: It is shown even when the input is empty.awaitarg('{miss: true, hideWithoutInput: true}',[{name: '123',miss: true,hideWithoutInput: true}]);
The text was updated successfully, but these errors were encountered:
These are the behaviors I'd naïvely expect given the names of the config properties, which are otherwise undocumented:
The text was updated successfully, but these errors were encountered: