fix bug with opening visualizer from list page

This commit is contained in:
Jake McDermott
2018-11-12 15:53:56 -05:00
parent c1d85f568c
commit 89a0be64af
2 changed files with 3 additions and 4 deletions

View File

@@ -104,7 +104,7 @@ function ListTemplatesController(
vm.openWorkflowVisualizer = template => {
const name = 'templates.editWorkflowJobTemplate.workflowMaker';
const params = { workflow_job_template_id: template.id };
const options = { reload: false };
const options = { reload: true };
$state.go(name, params, options);
};