Skip to content

Commit

Permalink
feat: reorder fields in IncidentView to improve layout and visibility…
Browse files Browse the repository at this point in the history
… of Incident ID
  • Loading branch information
simlarsen committed Jan 12, 2025
1 parent a755853 commit 5fc6049
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Dashboard/src/Pages/Incidents/View/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,13 +361,6 @@ const IncidentView: FunctionComponent<
modelType: Incident,
id: "model-detail-incidents",
fields: [
{
field: {
_id: true,
},
title: "Incident ID",
fieldType: FieldType.ObjectID,
},
{
field: {
incidentNumber: true,
Expand All @@ -382,6 +375,14 @@ const IncidentView: FunctionComponent<
return <># {item.incidentNumber}</>;
},
},
{
field: {
_id: true,
},
title: "Incident ID",
fieldType: FieldType.ObjectID,
},

{
field: {
title: true,
Expand Down

0 comments on commit 5fc6049

Please sign in to comment.