Ensure `rows` is set to an array

This commit is contained in:
CheyenneForbes 2021-07-16 03:03:12 -05:00 committed by GitHub
parent 05d7462a79
commit 44c2b34f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ new Vue({
var _this = this;
axios.request(axios_cfg('api/users/list'))
.then(function(response) {
_this.rows = response.data;
_this.rows = Array.isArray(response.data) ? response.data : [];
});
},