Skip to content

Commit

Permalink
change table format
Browse files Browse the repository at this point in the history
  • Loading branch information
birdpump committed May 15, 2024
1 parent 3ad26d8 commit 8317c6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/(admin)/admin/edit/views/LockerEdit.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
{
name: 'Status',
formatter: (cell) => {
if (cell === null) {
return 'No Status';
if (cell === 1) {
return 'Disabled'
} else {
return cell;
return 'No Status';
}
}
},
Expand Down

0 comments on commit 8317c6c

Please sign in to comment.