We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09eb54c commit 6c6b10bCopy full SHA for 6c6b10b
1 file changed
src/config.ts
@@ -210,12 +210,14 @@ export class ConfigClass {
210
}
211
212
// Method input
213
- input_value = undefined;
214
if ("method" in widget) {
215
- if (widget.method === method_name) {
+ if (widget.method == method_name) {
216
input_value = val;
217
218
+ else {
219
+ input_value = undefined;
220
+ }
221
222
// Slots
223
if ("slots" in widget && widget.slots != undefined) {
0 commit comments