Skip to content

Commit

Permalink
Update src/main/java/org/isf/medicalinventory/gui/InventoryEdit.java
Browse files Browse the repository at this point in the history
Co-authored-by: Alessandro Domanico <[email protected]>
  • Loading branch information
ArnaudFonzam and mwithi authored Sep 5, 2024
1 parent 138b5a1 commit 1240d89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1590,7 +1590,7 @@ private JLabel getStatusLabel() {
if (statusLabel == null) {
if (inventory == null) {
statusLabel = new JLabel(InventoryStatus.draft.toString());
statusLabel.setForeground(Color.WHITE);
statusLabel.setForeground(Color.GRAY);
} else {
String currentStatus = inventory.getStatus().toUpperCase();
statusLabel = new JLabel(currentStatus);
Expand Down

0 comments on commit 1240d89

Please sign in to comment.