Skip to content

Commit

Permalink
#156 fixed string error in mounted
Browse files Browse the repository at this point in the history
  • Loading branch information
smcgrath0 committed Aug 31, 2020
1 parent c907cd4 commit 0f8b2f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fragments/datalist/template.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
try {
const result = parent[obj](this.model.endpointurl)
if(result === false) {
console.error('Failed to load data from ''+this.model.endpointurl)
console.error('Failed to load data from '+this.model.endpointurl)
}
Vue.set(this, 'storageData', result)
} catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
try {
const result = parent[obj](this.model.endpointurl)
if(result === false) {
console.error('Failed to load data from ''+this.model.endpointurl)
console.error('Failed to load data from '+this.model.endpointurl)
}
Vue.set(this, 'storageData', result)
} catch(err) {
Expand Down

0 comments on commit 0f8b2f3

Please sign in to comment.