vedantprajapati commented on code in PR #33040:
URL: https://github.com/apache/superset/pull/33040#discussion_r2033429922
##########
superset-frontend/src/pages/ChartList/index.tsx:
##########
@@ -233,6 +237,17 @@ function ChartList(props: ChartListProps) {
addSuccessToast(t('Chart imported'));
};
+ const openBulkUpdateOwnersModal = (selected: Chart[]) => {
+ setBulkSelected(selected);
+ setShowBulkUpdateOwnersModal(true);
+ };
+
+ const closeBulkUpdateOwnersModal = () => {
+ setShowBulkUpdateOwnersModal(false);
+ setBulkSelected([]);
+ refreshData();
+ };
Review Comment:
modify it so it refreshes if bulkselected isnt empty
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]