Max Melentiev
Max Melentiev
May be this is rails issue. I've noticed that both associations are loaded in initial query, but then it fetches them again: ``` SQL (0.3ms) SELECT "projects"."id" AS t0_r0, "projects"."user_id"...
Yes. So it seems like this is more rails-related issue. I'll post an issue there soon to ask if this is a bug or desired behaviour. If this is ok,...
Thanks for feedback! I've included plain `input[type=number]` to fiddle to check it's behaviour in this cases. You can see that it does not clear trailing zeroes at all. Actually I...
For now I don't see how it can be done without having 2 separate fields: 1 - string to keep `input[type=number]` fine, and 2 - numeric for app. Is it...
> That only happens with the custom input Not only, see 1) case in fiddle (fill 1st input with 1.0000.0 ...), though it's for malformed value. > but you're of...
> No, it does not. Here is example: https://jsfiddle.net/hbov4mmr/8/ Checks `item.value != null && item.value !== ''` are repeated 3 times. > The empty string is actually very useful I'm...
Once again, this all is not about checking if an input is dirty, but about providing more solid and type-strict interface: if it returns numbers it should not return empty...
@lbogdan Looks great! Thank you! I've slightly changed and it also works with `null` instead of `NaN`: https://codesandbox.io/embed/4wk0k64yw0. I will give it a try in the app soon. Can you...
What do you think about (1) with option to disable/enable backtrace? ```ruby # when populate_empty_backtraces = true Rollbar.error('msg', backtrace: false) # when populate_empty_backtraces = false Rollbar.error('msg', backtrace: true) ``` Also...
I'll try. Does'n this oneliner reproduce the issue for you?