Improve name of build log state data attribute
This commit is contained in:
parent
0914efbfce
commit
de24902852
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@
|
||||||
this.pageUrl = options.pageUrl;
|
this.pageUrl = options.pageUrl;
|
||||||
this.buildUrl = options.buildUrl;
|
this.buildUrl = options.buildUrl;
|
||||||
this.buildStatus = options.buildStatus;
|
this.buildStatus = options.buildStatus;
|
||||||
this.state = options.state1;
|
this.state = options.logState;
|
||||||
this.buildStage = options.buildStage;
|
this.buildStage = options.buildStage;
|
||||||
this.updateDropdown = bind(this.updateDropdown, this);
|
this.updateDropdown = bind(this.updateDropdown, this);
|
||||||
this.$document = $(document);
|
this.$document = $(document);
|
||||||
|
|
|
@ -12,7 +12,7 @@ module BuildsHelper
|
||||||
build_url: namespace_project_build_url(@project.namespace, @project, @build, :json),
|
build_url: namespace_project_build_url(@project.namespace, @project, @build, :json),
|
||||||
build_status: @build.status,
|
build_status: @build.status,
|
||||||
build_stage: @build.stage,
|
build_stage: @build.stage,
|
||||||
state1: @build.trace_with_state[:state].to_s
|
log_state: @build.trace_with_state[:state].to_s
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
build_url: 'http://example.com/root/test-build/builds/2.json',
|
build_url: 'http://example.com/root/test-build/builds/2.json',
|
||||||
build_status: 'passed',
|
build_status: 'passed',
|
||||||
build_stage: 'test',
|
build_stage: 'test',
|
||||||
state1: 'buildstate' }}
|
log_state: 'buildstate' }}
|
||||||
|
|
||||||
%p.build-detail-row
|
%p.build-detail-row
|
||||||
The artifacts will be removed in
|
The artifacts will be removed in
|
||||||
|
|
Loading…
Reference in a new issue