Daniel Sudol
Daniel Sudol
```js // utility methods export function valuesEqual(value1, value2) { return (value1 && value1.toString()) === (value2 && value2.toString()); } export function valuesChanged(value1, value2) { let valuesBlank = isEmpty(value1) && isEmpty(value2); return...
@mwpastore, I am scared to look, and I don't have my teddy bear to hold on to today. Do you mind snooping around and seeing why this happens?
This is now "fixed" in the latest change tracker v0.6.2. EmberData was doing the change tracking for attributes for me, and so, what I do now is set the saved...
Your welcome Mike, and I realized the other day that I actually could do the thing where create attributes are set up for new record the way you want them...
I can't tell you why this is happening because I don't know what you are doing. I would need to see the whole picture of what is going on, from...
oooo .. this sounds like a bug. can you do me a huge favour and make a test to show this ( broken behaviour ) and slap it in a...
Thanks Bryan for writeup and this repo with bug example. It would be nice to have a failing test in change tracker repo, and hopefully I can make one on...
what you are doing is: loading all tasks ( in application route ) the tests are loaded with no comments then you load the task again asking for comments (...
You have to be more specific about what result your talking about .. I can guess, but I have to be super sure. If you can put this example in...
wow .. this is blast from the past. but i would suggest you make a PR and write a test or make the fix in the change tracker repo, that...