mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-16 22:29:24 +08:00
Logs now shows user
This commit is contained in:
parent
7fa1ddcd3a
commit
b5beceff5f
2 changed files with 3 additions and 5 deletions
|
@ -20,8 +20,7 @@ export interface ProductLogEntry {
|
|||
name: string;
|
||||
quantity: string;
|
||||
history_date: string;
|
||||
history_user_id: number;
|
||||
changed_by: string;
|
||||
history_user: string;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -31,8 +30,7 @@ export interface ProductLog {
|
|||
name: string;
|
||||
quantity: string;
|
||||
history_date: string;
|
||||
history_user_id: number;
|
||||
changed_by: string;
|
||||
history_user: string;
|
||||
}
|
||||
|
||||
// Redux Interfaces
|
||||
|
|
|
@ -108,7 +108,7 @@ export default function Logs() {
|
|||
{row.quantity}
|
||||
</TableCell>
|
||||
<TableCell style={{ ...styles.text_white, ...styles.text_S }}>
|
||||
{row.changed_by}
|
||||
{row.history_user}
|
||||
</TableCell>
|
||||
<TableCell style={{ ...styles.text_white, ...styles.text_S }}>
|
||||
{row.history_date}
|
||||
|
|
Loading…
Reference in a new issue