Skip to content

Commit

Permalink
Fix that when the timing data is not configured with environmental in…
Browse files Browse the repository at this point in the history
…formation, the timing management does not display the data. (apache#13339)
  • Loading branch information
zhuangchong committed Apr 3, 2023
1 parent d3c4459 commit c68e07f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
join t_ds_process_definition p_f on s.process_definition_code = p_f.code
join t_ds_project as p on p_f.project_code = p.code
join t_ds_user as u on s.user_id = u.id
join t_ds_environment as e on s.environment_code = e.code
left join t_ds_environment as e on s.environment_code = e.code
where 1=1
<if test="processDefinitionCode != 0">
and s.process_definition_code = #{processDefinitionCode}
Expand Down

0 comments on commit c68e07f

Please sign in to comment.