فهرست منبع

CDB: Fix filter not applied anymore after changing ID of a datafile line

lviguier 2 ماه پیش
والد
کامیت
23f7258bc3
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      hide/comp/cdb/Editor.hx

+ 3 - 1
hide/comp/cdb/Editor.hx

@@ -517,8 +517,10 @@ class Editor extends Component {
 			}
 		}
 
-		if( prevTarget != null || (prevObj != null && (prevObj.obj != obj || (table.sheet.index != null && table.sheet.index.get(prevValue) != null))) )
+		if( prevTarget != null || (prevObj != null && (prevObj.obj != obj || (table.sheet.index != null && table.sheet.index.get(prevValue) != null))) ) {
 			table.refresh();
+			updateFilters();
+		}
 	}
 
 	function onCopy() {