Skip to content

Commit

Permalink
Merge pull request AY2324S1-CS2103T-F12-4#115 from LoMaply/master
Browse files Browse the repository at this point in the history
Update UI for Marking Meeting
  • Loading branch information
howenc authored Nov 3, 2023
2 parents 3d69536 + 27edb9b commit 0261c97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/MeetingCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public MeetingCard(Meeting meeting, int displayedIndex) {
.sorted(Comparator.comparing(tag -> tag.tagName))
.forEach(tag -> tags.getChildren().add(new Label(tag.tagName)));
if (meeting.getStatus().isComplete) {
status.setText("[COMPLETE]");
status.setText("COMPLETE");
} else {
status.setText("");
}
Expand Down
5 changes: 2 additions & 3 deletions src/main/resources/view/MeetingScheduleCard.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@
</minWidth>
</Label>
<Label fx:id="title" styleClass="cell_big_label" text="\$first" wrapText="true" />
</HBox>
<HBox alignment="CENTER_RIGHT" spacing="5">
<Label fx:id="status" />
<Region HBox.hgrow="ALWAYS"/>
<Label fx:id="status" styleClass="cell_status_label" />
</HBox>
<FlowPane fx:id="tags" />
<HBox alignment="CENTER_LEFT" spacing="5">
Expand Down

0 comments on commit 0261c97

Please sign in to comment.