diff --git a/src/main/resources/templates/stack.html b/src/main/resources/templates/stack.html
index b96184b07..165318fcb 100644
--- a/src/main/resources/templates/stack.html
+++ b/src/main/resources/templates/stack.html
@@ -194,7 +194,8 @@
Job history
return $.get(`/api/state/${stackId}`)
.then(data => {
// finding stack output
- stack.outputs = data.outputs;
+ // data.modules[0].outputs for CLI <= 0.11.x
+ stack.outputs = data.outputs || data.modules[0].outputs;
})
.catch(e => {
// a 404 means that the stack is new