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 api.process.list
.start() .start()
.then((response) => { .then((response) => {
that.categories = that.formatCategories(response.data); if (response.data && response.data.success !== "failure") {
that.categoriesFiltered = that.categories; that.categories = that.formatCategories(response.data);
that.categoriesFiltered = that.categories;
}
}) })
.catch((e) => { .catch((e) => {
console.error(e); console.error(e);