[Fix] don't auto read logs

This commit is contained in:
Robert von Burg 2018-09-10 10:46:59 +02:00
parent c88d0ac448
commit 352c221b08
2 changed files with 9 additions and 14 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-inspector",
"description": "Strolch WebComponent Inspector",
"version": "0.10.2",
"version": "0.10.3",
"authors": ["Robert von Burg"],
"keywords": [
"strolch",

View File

@ -244,15 +244,11 @@
properties: {
realms: {
type: Array,
value: function () {
return null;
}
value: null
},
selectedRealm: {
type: Object,
value: function () {
return null;
},
value: null,
observer: 'realmChanged'
},
@ -334,15 +330,11 @@
},
offset: {
type: Number,
value: function () {
return 0;
}
value: 0
},
limit: {
type: Number,
value: function () {
return 100;
}
value: 100
}
},
@ -415,11 +407,14 @@
this.$.dlg.open();
},
ready: function () {
reload: function () {
this.reloadRealms();
},
reloadOperationsLog: function () {
if (this.realms == null) {
return;
}
this.dlgTitle = 'Fetching log failed';
this._handleAjaxResponse = function (data) {