Skip to content

Commit 237b81e

Browse files
committed
fixup! fixup! fixup! fix: Add authentication to reporting-api (#2329)
1 parent 4ee2aa8 commit 237b81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

catalog-manager/operator/catalog_item.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def rating(self):
4848
@property
4949
def is_disabled(self):
5050
is_disabled_str = self.labels.get(Babylon.catalog_item_is_disabled_label, "False")
51-
is_disabled = {"True": True, "False": False}.get(is_disabled_str, False)
51+
is_disabled = {"True": True, "False": False}.get(is_disabled_str)
5252
return is_disabled
5353

5454
def update_from_definition(self, definition):

0 commit comments

Comments
 (0)