From 8d3f09e88cc56382782ded636a386b7be64c9b8a Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Sun, 3 Apr 2022 15:39:56 -0500 Subject: [PATCH] Improved changeset note Signed-off-by: Andre Wanlin --- .changeset/grumpy-parents-prove.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.changeset/grumpy-parents-prove.md b/.changeset/grumpy-parents-prove.md index 0d304c96f4..ff01fe13f0 100644 --- a/.changeset/grumpy-parents-prove.md +++ b/.changeset/grumpy-parents-prove.md @@ -2,4 +2,24 @@ '@backstage/plugin-org': patch --- -Provides the ability to hide the relations toggle as well as setting a default relation type +Provides the ability to hide the relations toggle on the `OwnershipCard` as well as setting a default relation type. + +To hide the toggle simply include the `hideRelationsToggle` prop like this: + +```tsx + +``` + +To set the default relation type, add the `relationsType` prop with a value of direct or aggregated, the default if not provided is direct. Here is an example: + +```tsx + +```