diff --git a/src/components/RunningEmptyContent.vue b/src/components/RunningEmptyContent.vue index 8296f6cf..f99af157 100644 --- a/src/components/RunningEmptyContent.vue +++ b/src/components/RunningEmptyContent.vue @@ -6,7 +6,7 @@
- {{ progress }}% + {{ formattedProgress }} %
@@ -64,6 +64,12 @@ export default { }, computed: { + formattedProgress() { + if (this.progress !== null) { + return this.progress.toFixed(2) + } + return null + }, }, mounted() {