+
+
+
+
+ diff --git a/frontend-angular/src/app/app.component.html b/frontend-angular/src/app/app.component.html index 35fca63..3abb1a6 100644 --- a/frontend-angular/src/app/app.component.html +++ b/frontend-angular/src/app/app.component.html @@ -16,7 +16,7 @@
- For a guide and recipes on how to configure / customize this project,
- check out the
- vue-cli documentation.
-
{{ $t('app.people.index.table.id.header') }} | +{{ $t('app.people.index.table.firstName.header') }} | +{{ $t('app.people.index.table.lastName.header') }} | +{{ $t('app.people.index.table.email.header') }} | +{{ $t('app.people.index.table.status.header') }} | +
---|---|---|---|---|
{{ person.id }} | +{{ person.firstName }} | +{{ person.lastName }} | +{{ person.email }} | +{{ + person.status === 0 + ? $t('app.people.index.table.status.value.active') + : $t('app.people.index.table.status.value.inactive') + }} + | +