diff --git a/bower.json b/bower.json index 43184a4..b8a18d3 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "strolch-wc-inspector", "description": "Strolch WebComponent Inspector", - "version": "0.16.2", + "version": "0.16.3", "authors": ["Robert von Burg"], "keywords": [ "strolch", diff --git a/strolch-wc-users.html b/strolch-wc-users.html index a4891f9..cfa824e 100644 --- a/strolch-wc-users.html +++ b/strolch-wc-users.html @@ -270,9 +270,6 @@ type: Array, value: [] }, - passwordEncoding: { - type: String - }, searchTerm: { type: String, observer: 'searchTermChanged' @@ -374,8 +371,7 @@ this.$.ajax.url = this.basePath + 'rest/strolch/privilege/users/' + this.user.username + '/password'; this.$.ajax.method = 'PUT'; this.$.ajax.body = { - password: btoa(unescape(encodeURIComponent(this.password0))), - encoding: this.passwordEncoding + password: btoa(unescape(encodeURIComponent(this.password0))) }; this.$.ajax.generateRequest(); },