fix: edit payment transaction

This commit is contained in:
Ahmed Bouhuolia
2025-10-29 12:54:12 +02:00
parent 98401b5a01
commit fc89cfb14a
13 changed files with 57 additions and 77 deletions

View File

@@ -101,11 +101,11 @@ export function ActionsCell(props) {
*/
export function PublishAccessor(row) {
return row.is_published ? (
<Tag round={true} minimal={true}>
<Tag round>
<T id={'published'} />
</Tag>
) : (
<Tag round={true} minimal={true} intent={Intent.WARNING}>
<Tag round minimal intent={Intent.WARNING}>
<T id={'draft'} />
</Tag>
);