Merge pull request 'Account_Hide' (#36) from Account_Hide into main
Deploy to S3 / deploy (push) Successful in 35s
Details
Deploy to S3 / deploy (push) Successful in 35s
Details
Reviewed-on: #36pull/37/head
commit
259c41c049
|
|
@ -230,7 +230,6 @@ export default function Candidates() {
|
||||||
() => [
|
() => [
|
||||||
{ key: 'name', label: 'Candidate', sortable: true },
|
{ key: 'name', label: 'Candidate', sortable: true },
|
||||||
{ key: 'email', label: 'Email', sortable: true },
|
{ key: 'email', label: 'Email', sortable: true },
|
||||||
{ key: 'isActive', label: 'Account', sortable: true },
|
|
||||||
{ key: 'applied', label: 'Added', sortable: true },
|
{ key: 'applied', label: 'Added', sortable: true },
|
||||||
],
|
],
|
||||||
[],
|
[],
|
||||||
|
|
@ -415,11 +414,6 @@ export default function Candidates() {
|
||||||
<td>
|
<td>
|
||||||
<span className="text-sm cell-clip" title={c.email || undefined}>{c.email ?? '—'}</span>
|
<span className="text-sm cell-clip" title={c.email || undefined}>{c.email ?? '—'}</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
|
||||||
{c.isActive
|
|
||||||
? <Badge className="b-green">Active</Badge>
|
|
||||||
: <Badge className="b-amber">Unconfirmed</Badge>}
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<span className="text-sm">
|
<span className="text-sm">
|
||||||
{c.applied ? c.applied.toLocaleDateString() : '—'}
|
{c.applied ? c.applied.toLocaleDateString() : '—'}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue