Cosmetic updates
This commit is contained in:
@@ -9,7 +9,7 @@ export default function AuditTrailValuesComponent({ oldV, newV }) {
|
||||
|
||||
if (!oldV && newV)
|
||||
return (
|
||||
<List bordered size="small">
|
||||
<List style={{ width: "800px" }} bordered size="small">
|
||||
{Object.keys(newV).map((key, idx) => (
|
||||
<List.Item key={idx} value={key}>
|
||||
{key}: {JSON.stringify(newV[key])}
|
||||
@@ -19,7 +19,7 @@ export default function AuditTrailValuesComponent({ oldV, newV }) {
|
||||
);
|
||||
|
||||
return (
|
||||
<List bordered size="small">
|
||||
<List style={{ width: "800px" }} bordered size="small">
|
||||
{Object.keys(oldV).map((key, idx) => (
|
||||
<List.Item key={idx}>
|
||||
{key}: {oldV[key]} <Icon component={FaArrowRight} />
|
||||
|
||||
Reference in New Issue
Block a user