From c201b2504af017569f9c2556eae54ea87738837b Mon Sep 17 00:00:00 2001 From: munishchouhan Date: Tue, 19 Nov 2024 09:57:31 +0100 Subject: [PATCH] minor change [ci skip] Signed-off-by: munishchouhan --- src/main/groovy/io/seqera/wave/controller/ViewController.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/io/seqera/wave/controller/ViewController.groovy b/src/main/groovy/io/seqera/wave/controller/ViewController.groovy index 469f7526a..3d3950461 100644 --- a/src/main/groovy/io/seqera/wave/controller/ViewController.groovy +++ b/src/main/groovy/io/seqera/wave/controller/ViewController.groovy @@ -243,7 +243,7 @@ class ViewController { and render the condalock file from latest successful build and replace with the current build's condalock file. */ - if ( condaLock && condaLock.contains('cat environment.lock')) { + if ( condaLock && condaLock.contains('cat environment.lock') ) { condaLock = null //if there is no conda lock file, don't show the conda lock data def builds = persistenceService.allBuilds(result.buildId.split('-')[1].split('_')[0]) for (def build : builds) {