From 21192d70b62d37d8fe8525b5cc6cf0813cb2519e Mon Sep 17 00:00:00 2001 From: Jasder <2053003901@@qq.com> Date: Tue, 25 Aug 2020 17:09:44 +0800 Subject: [PATCH] FIX stage bug --- app/views/ci/builds/_stage.json.jbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ci/builds/_stage.json.jbuilder b/app/views/ci/builds/_stage.json.jbuilder index 3a1eca9db..256f81e77 100644 --- a/app/views/ci/builds/_stage.json.jbuilder +++ b/app/views/ci/builds/_stage.json.jbuilder @@ -17,6 +17,6 @@ json.updated format_utc_time(stage.stage_updated) json.version stage.stage_version json.on_success stage.stage_on_success json.on_failure stage.stage_on_failure -json.steps build.steps do |stage| +json.steps stage.steps do |step| json.partial! "/ci/builds/step", step: step end