Skip to content

Commit

Permalink
refactor: column widths
Browse files Browse the repository at this point in the history
(cherry picked from commit 6892449)
  • Loading branch information
krantheman authored and mergify[bot] committed Oct 14, 2024
1 parent b08c890 commit 257b4e4
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,23 @@ def get_columns():
"fieldtype": "Link",
"fieldname": "employee",
"options": "Employee",
"width": 120,
"width": 300,
},
{
"label": _("Name"),
"label": _("Employee Name"),
"fieldtype": "Data",
"width": 200,
"width": 0,
"hidden": 1,
},
{
"label": _("Date"),
"fieldtype": "Date",
"width": 100,
"width": 120,
},
{
"label": _("Status"),
"fieldtype": "Data",
"width": 70,
"width": 100,
},
{
"label": _("Holiday"),
Expand Down

0 comments on commit 257b4e4

Please sign in to comment.