Views input-box with type number still considered a string on Javascript side Hello there, is it intended behavior/am I doing something wrong, that even with the type attribute for an input-box set to number, the variable will still be considered a string on javascript side once set to a value via the input box?This of course results in the + operator behaving differently when performing calculations with javascript (see the example in the picture). While obvious in this case, as other operators will dynamically cast to int or float just fine and the default values work as intended before being changed by the variable input, it took more time than I'm willing to admit for me to understand, that this was the reason my annotation lines would sometimes not show up for my histogram. Here the Yaml-code for the example:metadata: key: variable-input-test template: false name: Variable Input test allowAdvancedFilters: truevariables: - id: Value1 name: Value1 defaultValue: 1 type: NUMBER - id: Value2 name: Value2 defaultValue: 1 type: NUMBERla