Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit cca1fae

Browse files
authored
Remove in_use_by_relations from the subscription detail page (#262)
1 parent 3363a00 commit cca1fae

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/components/subscriptionDetail/templates/ServiceConfiguration.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export function RenderServiceConfiguration({
9898
const fields = Object.entries(instance)
9999
.filter(([key]) => !["label", "subscription_instance_id", "name"].includes(key))
100100
.filter(([key, value]) => (key === "owner_subscription_id" ? value !== subscription_id : true))
101+
.filter(([key, value]) => key !== "in_use_by_relations")
101102
.map<[string, any]>(([key, value]) => {
102103
return isArray(value) ? [key, value] : [key, [value]];
103104
});

0 commit comments

Comments
 (0)