From 0a3d2d96c6b9c5de83f75a2d963768a00ea5abca Mon Sep 17 00:00:00 2001 From: Gianni Carafa Date: Thu, 9 Dec 2021 16:44:47 +0100 Subject: [PATCH] fix: avoid error if dockerfile is not recustructable --- resources/views/image.blade.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/views/image.blade.php b/resources/views/image.blade.php index 8e5932e..b1aefd3 100644 --- a/resources/views/image.blade.php +++ b/resources/views/image.blade.php @@ -107,7 +107,9 @@
 @foreach (json_decode($image['history']) as $history)
+@isset($history->commcreated_byent)
 {{ $history->created_by }}
+@endisset
 @endforeach