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
ERR_FAIL_COND_V_MSG(!elem.has(p_name_field), false, vformat("Validate extension JSON: Element of base_array '%s' is missing field '%s'. This is a bug.", base_array, p_name_field));
1373
1373
String name = elem[p_name_field];
1374
+
if (name.is_valid_float()) {
1375
+
name = name.trim_suffix(".0"); // Make "integers" stringified as integers.
1376
+
}
1374
1377
if (p_compare_operators && elem.has("right_type")) {
0 commit comments