Skip to content

Commit

Permalink
1556 Adds inline note edit for subscription list page
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardovdheijden committed Nov 25, 2024
1 parent 78428ed commit cd0d38f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/twelve-crews-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@orchestrator-ui/orchestrator-ui-components': minor
---

1556 Adds inline note editing for the subscription list page
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
Pagination,
WfoDateTime,
WfoInlineJson,
WfoInlineNoteEdit,
WfoInsyncIcon,
WfoJsonCodeBlock,
WfoSubscriptionStatusBadge,
Expand Down Expand Up @@ -149,6 +150,13 @@ export const WfoSubscriptionsList: FC<WfoSubscriptionsListProps> = ({
note: {
columnType: ColumnType.DATA,
label: t('note'),
renderData: (cellValue, row) => (
<WfoInlineNoteEdit
subscriptionId={row.subscriptionId}
value={cellValue}
onlyShowOnHover={true}
/>
),
},
metadata: {
columnType: ColumnType.DATA,
Expand Down

0 comments on commit cd0d38f

Please sign in to comment.