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
We wont be fixing this until v2.0.0 because it is a potential breaking change. Here is a simple computed you can use to work around with issue along with a jsFiddle example
ko.pureComputed(function(){
var result = self.selectedServers();
if(Array.isArray(result))
return result;
else
return [result];
});
Currently when multi-Select is false selectedServers is set to an object not an array of one object. This is confusing.
The text was updated successfully, but these errors were encountered: