Skip to content

Commit

Permalink
fix r40 picture loading in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
yocalebo committed Oct 17, 2024
1 parent cd6a40d commit b034271
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,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 @@ -674,7 +673,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 @@ -695,6 +694,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 b034271

Please sign in to comment.