Skip to content

Commit

Permalink
Fix do not show null in build view
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Jun 6, 2024
1 parent 2e4568d commit 763ffe0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ViewController {
binding.build_containerfile = result.dockerFile ?: '-'
binding.build_condafile = result.condaFile
binding.build_spackfile = result.spackFile
binding.build_digest = result.digest
binding.build_digest = result.digest ?: '-'
binding.put('server_url', serverUrl)
binding.scan_url = result.scanId && result.succeeded() ? "$serverUrl/view/scans/${result.scanId}" : null
binding.scan_id = result.scanId
Expand Down

0 comments on commit 763ffe0

Please sign in to comment.