|
|
@@ -397,6 +397,7 @@ var Collection = function (vm, collection) {
|
|
|
self.uuid = ko.observable(typeof collection.uuid != "undefined" && collection.uuid != null ? collection.uuid : UUID());
|
|
|
self.name = ko.mapping.fromJS(collection.name);
|
|
|
self.label = ko.mapping.fromJS(collection.label);
|
|
|
+ self.description = ko.observable(typeof collection.description != "undefined" && collection.description != null ? collection.description : "");
|
|
|
self.enabled = ko.mapping.fromJS(collection.enabled);
|
|
|
self.autorefresh = ko.mapping.fromJS(collection.autorefresh);
|
|
|
self.autorefreshSeconds = ko.mapping.fromJS(collection.autorefreshSeconds || 60);
|