[Fix] Don't use let in old polymer projects!

This commit is contained in:
Robert von Burg 2020-03-27 08:57:27 +01:00
parent d445854a35
commit 49c3d58dbe
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "strolch-wc-reports", "name": "strolch-wc-reports",
"description": "Strolch WebComponent Reports", "description": "Strolch WebComponent Reports",
"version": "0.2.7", "version": "0.2.8",
"authors": [ "authors": [
"Robert von Burg" "Robert von Burg"
], ],

View File

@ -546,7 +546,7 @@
// set the new report id // set the new report id
this.filtersReady = false; this.filtersReady = false;
let reportId = this.reports[this.selectedReportIndex].id; var reportId = this.reports[this.selectedReportIndex].id;
this.set("reportId", reportId); this.set("reportId", reportId);
this.$.ajaxGetFacets.params = { this.$.ajaxGetFacets.params = {
limit: this.facetLimit limit: this.facetLimit