File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
internal/pkg/utils/index/presenters Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -245,10 +245,10 @@ func PrintIndexDisplayTable(data *IndexDisplayData) {
245245 }
246246
247247 // Spec-specific information
248- if data .Specification == "serverless" {
248+ if strings . HasPrefix ( data .Specification , "serverless" ) {
249249 rows = append (rows , presenters.Row {"Cloud Provider" , data .CloudProvider })
250250 rows = append (rows , presenters.Row {"Region" , data .Region })
251- } else if data .Specification == "pod" {
251+ } else if strings . HasPrefix ( data .Specification , "pod" ) {
252252 rows = append (rows , presenters.Row {"Environment" , data .Environment })
253253 rows = append (rows , presenters.Row {"Pod Type" , data .PodType })
254254 rows = append (rows , presenters.Row {"Replicas" , data .Replicas })
You can’t perform that action at this time.
0 commit comments