Minor sync for 2.0

This commit is contained in:
Frikky
2025-02-26 12:40:50 +01:00
parent e47c738e46
commit 0f95910f2b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1687,7 +1687,7 @@ const AngularWorkflow = (defaultprops) => {
if (filter === undefined || filter === null || filter.toUpperCase() === "ALL") {
// Check for
if (executionFilter !== undefined && executionFilter !== null && executionFilter.length > 0) {
if (executionFilter !== undefined && executionFilter !== null && executionFilter.length > 0 && filter !== "ALL") {
filter = executionFilter
} else {
filter = "ALL"
+1 -1
View File
@@ -2906,7 +2906,7 @@ const AppExplorer = (props) => {
const deduplicateByName = (array) => {
const uniqueNames = {};
return array.filter(item => {
if (!item.hasOwnProperty('name') || !item.name.length) {
if (!item?.hasOwnProperty('name') || !item?.name?.length) {
return true
}
if (!uniqueNames[item.name]) {