Skip to content

Commit

Permalink
Improve UI layout order and phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
wxwern committed Oct 19, 2023
1 parent 6826916 commit 3c62c9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/ContactCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public ContactCard(Contact contact, int displayedIndex) {
StringUtil.formatWithNullFallback("Application Status: %s", statusString));
setVboxInnerLabelText(
position, () ->
StringUtil.formatWithNullFallback("Application Position: %s", positionString));
StringUtil.formatWithNullFallback("Job Position: %s", positionString));
cardPaneInnerVbox.getChildren().remove(linkedParentOrganization);
break;
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/view/ContactListCard.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
<Label fx:id="id" styleClass="cell_small_label" text="\$id" />
<FlowPane fx:id="tags" />
<Label fx:id="phone" styleClass="cell_small_label" text="\$phone" />
<Label fx:id="address" styleClass="cell_small_label" text="\$address" />
<Label fx:id="email" styleClass="cell_small_label" text="\$email" />
<Label fx:id="url" styleClass="cell_small_label" text="\$url" />
<Label fx:id="address" styleClass="cell_small_label" text="\$address" />
<Label fx:id="status" styleClass="cell_small_label" text="\$status" />
<Label fx:id="position" styleClass="cell_small_label" text="\$position" />
<Label fx:id="url" styleClass="cell_small_label" text="\$url" />
</VBox>
</GridPane>
</HBox>

0 comments on commit 3c62c9f

Please sign in to comment.