From d462acb119403d56b4fc06f4371d23945bc7a766 Mon Sep 17 00:00:00 2001 From: Yinan Zhou Date: Fri, 7 Jun 2024 09:43:30 -0400 Subject: [PATCH] fix: clear view on workflow delete Refs: #1162 --- rodan-client/code/src/js/Controllers/ControllerWorkflow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rodan-client/code/src/js/Controllers/ControllerWorkflow.js b/rodan-client/code/src/js/Controllers/ControllerWorkflow.js index 2184b38ba..5bf5099d1 100644 --- a/rodan-client/code/src/js/Controllers/ControllerWorkflow.js +++ b/rodan-client/code/src/js/Controllers/ControllerWorkflow.js @@ -71,7 +71,7 @@ export default class ControllerWorkflow extends BaseController // Clear the individual view (if there). if (this._viewItem !== null && options.workflow === this._viewItem.model) { - this._projectView.clearItemView(); + this._projectView.clearCollectionItemInfoView(); } options.workflow.destroy({success: (model) => this._handleDeleteSuccess(model, this._collection)}); }