Skip to content

Commit

Permalink
fix r40 picture loading in UI
Browse files Browse the repository at this point in the history
(cherry picked from commit b034271)
  • Loading branch information
yocalebo authored and bugclerk committed Oct 17, 2024
1 parent 6d28c5f commit 22a3dc1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,6 @@ def top_loaded(self):
Returns: bool
"""
return any((
self.is_r40,
self.is_r50_series,
self.is_60_bay_jbod,
self.is_102_bay_jbod
Expand All @@ -670,7 +669,7 @@ def top_slots(self):
Returns: int
"""
if self.top_loaded:
if self.is_r40 or self.is_r50_series:
if self.is_r50_series:
return 48
elif self.is_60_bay_jbod:
return 60
Expand All @@ -691,6 +690,7 @@ def front_loaded(self):
return any((
self.is_xseries,
self.is_r30,
self.is_r40,
self.is_12_bay_jbod,
self.is_r20_series,
self.is_hseries,
Expand Down

0 comments on commit 22a3dc1

Please sign in to comment.