Skip to content

Commit

Permalink
Bugfix: Startpage for rel. 12.1.0.1 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rammpeter committed Aug 17, 2024
1 parent 5c250f7 commit 16768d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/env_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def start_page
unless dv_status.empty?
dv_status.each do |dv|
@containers.each do |c|
if c.con_id == dv.con_id
if dv['con_id'] && c.con_id == dv.con_id # check if CDB_DV_STATUS has a column con_id, has not in 12.1
c.features = '' if c.features.nil?
c.features << "#{dv.name}: #{dv.status}\n"
end
Expand Down

0 comments on commit 16768d8

Please sign in to comment.