FOUR-13206 New Table and filters are not translated by gproly · Pull Request #6154 · ProcessMaker/processmaker
Expand Up
@@ -469,7 +469,12 @@ export default {
* @returns {Array}
*/
getStatus() {
return ["In Progress", "Completed", "Error", "Canceled"];
return [
{value: "In Progress", text: this.$t("In Progress")},
{value: "Completed", text: this.$t("Completed")},
{value: "Error", text: this.$t("Error")},
{value: "Canceled", text: this.$t("Canceled")}
];
},
/**
* This method is used in PMColumnFilterPopoverCommonMixin.js
Expand Down