We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b44e3f commit 3a9cd39Copy full SHA for 3a9cd39
datalab/gui/panel/base.py
@@ -601,6 +601,12 @@ def apply_creation_parameters(self) -> None:
601
# Update metadata with new creation parameters
602
insert_creation_parameters(self.current_creation_obj, param)
603
604
+ # Auto-recompute analysis if the object had analysis parameters
605
+ # Since the data has changed, any analysis results are now invalid
606
+ # Use the processor for the current object's type
607
+ obj_processor = self.__get_processor_associated_to(self.current_creation_obj)
608
+ obj_processor.auto_recompute_analysis(self.current_creation_obj)
609
+
610
# Update the tree view item (to show new title if it changed)
611
self.panel.objview.update_item(obj_uuid)
612
0 commit comments