Hi, I have a simple computed property that returns name from my user model. The problem is when the model is being reloaded, the value is empty for a moment. Is there a way to keep the old value till the new one is loaded?
// Computed property
userName: computed.alias('model.name')
// In template than super simple
<h1>{{userName}}</h1>
// But when I do in code
model.reload();
// Then I get for a few milliseconds (basically it blinks) before the name is loaded again
<h1></h1>