fixed SearchDate
This commit is contained in:
@@ -11,7 +11,7 @@ interface Recibo {
|
||||
fecha_registro: string;
|
||||
monto: string;
|
||||
user: {
|
||||
nombre: string;
|
||||
usuario: string;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ function PorRecibos({ desde, hasta }: Props) {
|
||||
<tbody>
|
||||
{!loading && recibos.length === 0 && (
|
||||
<tr>
|
||||
<td colSpan={2}>No hay recibos en este rango</td>
|
||||
<td colSpan={5}>No hay recibos en este rango</td>
|
||||
</tr>
|
||||
)}
|
||||
|
||||
@@ -82,7 +82,7 @@ function PorRecibos({ desde, hasta }: Props) {
|
||||
<td>${Number(recibo.monto).toFixed(2)}</td>
|
||||
<td>{recibo.fecha_recibo}</td>
|
||||
<td>{recibo.fecha_registro}</td>
|
||||
<td>{recibo.user.nombre}</td>
|
||||
<td>{recibo.user.usuario}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user