From 4c8dc29946067aeaf46789058ecb310d0d862750 Mon Sep 17 00:00:00 2001 From: Paulo Castro Date: Tue, 20 Oct 2020 01:09:49 +0100 Subject: [PATCH] build/deploy: Fix image size notice at end of build Change-type: patch --- lib/utils/compose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/compose.js b/lib/utils/compose.js index 8b7c6065..50868f22 100644 --- a/lib/utils/compose.js +++ b/lib/utils/compose.js @@ -658,7 +658,7 @@ export class BuildProgressInline { if (summary != null) { this._services.forEach((service) => { - this._renderEvent(service, summary[service]); + this._renderEvent(service, { status: summary[service] }); }); }