Skip to content

Commit e5b8a96

Browse files
committed
Allow admins to edit approved kudos from the management screen.
1 parent 6a73655 commit e5b8a96

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

web-ui/src/pages/ManageKudosPage.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,12 @@ const ManageKudosPage = () => {
234234
: (
235235
<div>
236236
{approvedKudos.filter(filterApprovedKudos).map(k =>
237-
<KudosCard key={k.id} kudos={k}/>
237+
<KudosCard
238+
key={k.id}
239+
kudos={k}
240+
includeEdit
241+
onKudosAction={loadAndSetApprovedKudos}
242+
/>
238243
)}
239244
</div>
240245
)

0 commit comments

Comments
 (0)