Commit 3b94c43c authored by Kev's avatar Kev

Rename entries to statistics

parent f2be6cf1
...@@ -13,7 +13,7 @@ export default { ...@@ -13,7 +13,7 @@ export default {
totalDuration() { totalDuration() {
return formatPipelineDuration(this.counts.totalDuration); return formatPipelineDuration(this.counts.totalDuration);
}, },
entries() { statistics() {
return [ return [
{ {
title: s__('PipelineCharts|Total:'), title: s__('PipelineCharts|Total:'),
...@@ -42,7 +42,7 @@ export default { ...@@ -42,7 +42,7 @@ export default {
</script> </script>
<template> <template>
<ul> <ul>
<template v-for="({ title, value }, index) in entries"> <template v-for="({ title, value }, index) in statistics">
<li :key="index"> <li :key="index">
<span>{{ title }}</span> <span>{{ title }}</span>
<strong>{{ value }}</strong> <strong>{{ value }}</strong>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment