Skip to content

Commit

Permalink
Fix merge mistake
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <lucasoneil@gmail.com>
  • Loading branch information
loneil committed Nov 15, 2023
1 parent 65179d7 commit ec2e6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
:hidden="!showDeleted"
>
<template #body="{ data }">
{{ data.deleted }}
{{ data.deleted_at }}
</template>
<template #filter="{ filterModel, filterCallback }">
<InputText
Expand Down
2 changes: 1 addition & 1 deletion services/tenant-ui/frontend/src/helpers/tableFormatters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const formatTenants = (
tenants: Ref<TenantRecord[]>
): FormattedTenantRecord[] =>
tenants.value.map((tenant: any) => ({
deleted_at: tenant.deleted_at,
deleted_at: formatDateLong(tenant.deleted_at),
tenant_id: tenant.tenant_id,
tenant_name: tenant.tenant_name,
connect_to_endorser: tenant.connect_to_endorser,
Expand Down

0 comments on commit ec2e6c5

Please sign in to comment.