Skip to content

Commit

Permalink
#183 fixed captions misaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony4m committed Dec 17, 2024
1 parent 0965501 commit 033a3a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ public EbsAlertDto createAlertComponent(final String ebsUuid, boolean isEditAllo
if (isSignalVerified(ebsUuid)) {
return null;
}
VaadinUiUtil.showModalPopupWindow(createAlertComponent, I18nProperties.getString(Strings.headingCreateNewEvent));
VaadinUiUtil.showModalPopupWindow(createAlertComponent, I18nProperties.getString(Strings.headingCreateNewAlert));
return ebsAlertDto;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ protected void addFields() {
riskAssessment.addStyleName(H3);
getContent().addComponent(riskAssessment, RISK_ASSESSMENT_LOC);

Label riskClassification = new Label(I18nProperties.getString(Strings.headingRiskDetails));
Label riskClassification = new Label(I18nProperties.getString(""));
// Label riskClassification = new Label(I18nProperties.getString(Strings.headingRiskDetails));
riskClassification.addStyleName(H5);
getContent().addComponent(riskClassification, RISK_CLASSIFICATION_LOC);
NullableOptionGroup morbidityMortality = addField(RiskAssessmentDto.MORBIDITY_MORTALITY, NullableOptionGroup.class);
Expand Down

0 comments on commit 033a3a5

Please sign in to comment.