diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-12-07 13:33:21 -0600 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-12-07 13:33:21 -0600 |
commit | 3642f6f011445ea1c52b7b07765d8f28235d4dca (patch) | |
tree | 1585c491b229e7a08355f6e13aa8af9a4e6a35b2 | |
parent | d377aa5475ad130f9856fe811b00571235e84e22 (diff) | |
download | gitlab-ce-3642f6f011445ea1c52b7b07765d8f28235d4dca.tar.gz |
Reduce the size of the deploy flag when there's no tag available38032-deploy-markers-should-be-more-verbose
-rw-r--r-- | app/assets/javascripts/monitoring/components/graph/deployment.vue | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/app/assets/javascripts/monitoring/components/graph/deployment.vue b/app/assets/javascripts/monitoring/components/graph/deployment.vue index 32ca08fdbc0..026e2fd0c49 100644 --- a/app/assets/javascripts/monitoring/components/graph/deployment.vue +++ b/app/assets/javascripts/monitoring/components/graph/deployment.vue @@ -64,6 +64,14 @@ } return xPosition; }, + + svgContainerHeight(tag) { + let svgHeight = 80; + if (!tag) { + svgHeight -= 20; + } + return svgHeight; + }, }, }; </script> @@ -97,14 +105,14 @@ :x="positionFlag(deployment)" y="0" width="134" - height="80"> + :height="svgContainerHeight(deployment.tag)"> <rect class="rect-text-metric deploy-info-rect rect-metric" x="1" y="1" rx="2" width="132" - height="78"> + :height="svgContainerHeight(deployment.tag) - 2"> </rect> <text class="deploy-info-text text-metric-bold" @@ -136,7 +144,7 @@ name="commit" :width="12" :height="12" - :y="5"> + :y="3"> </icon> <a :xlink:href="deployment.commitUrl"> <text |