Skip to content

Commit

Permalink
Simplify submission page and re-order information in a better way.
Browse files Browse the repository at this point in the history
  • Loading branch information
meisterT committed Sep 8, 2024
1 parent e71f3be commit c014fd4
Show file tree
Hide file tree
Showing 2 changed files with 254 additions and 243 deletions.
3 changes: 2 additions & 1 deletion webapp/src/Twig/TwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,8 @@ public function printMetadata(?string $metadata): string
. Utils::printsize((int)($metadata['memory-bytes'])) . ', '
. '<i class="far fa-question-circle" title="exit-status"></i> '
. 'exit-code: ' . $metadata['exitcode']
. (($metadata['signal'] ?? -1) > 0 ? ' signal: ' . $metadata['signal'] : '');
. (($metadata['signal'] ?? -1) > 0 ? ' signal: ' . $metadata['signal'] : '')
. '</span>';
}

public function printWarningContent(ExternalSourceWarning $warning): string
Expand Down
Loading

0 comments on commit c014fd4

Please sign in to comment.