diff --git a/frontend/src/main.js b/frontend/src/main.js index 4335468..b72b8a7 100644 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -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 : []; }); },