PMCORE-2692: Error with ghost processes

remove debugger

code style
This commit is contained in:
Rodrigo Quelca
2021-01-12 22:14:03 +00:00
parent 3c13ad12c8
commit b571359e8c

View File

@@ -64,8 +64,10 @@ export default {
api.process.list
.start()
.then((response) => {
that.categories = that.formatCategories(response.data);
that.categoriesFiltered = that.categories;
if (response.data && response.data.success !== "failure") {
that.categories = that.formatCategories(response.data);
that.categoriesFiltered = that.categories;
}
})
.catch((e) => {
console.error(e);