Skip to content

Commit 919d0ae

Browse files
resolved test failures
1 parent b57cea0 commit 919d0ae

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

sormas-backend/src/main/resources/sql/sormas_schema.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13832,5 +13832,8 @@ INSERT INTO schema_version (version_number, comment) VALUES (560, 'Create survey
1383213832
ALTER TABLE environments ADD column IF NOT EXISTS vectortype varchar(255);
1383313833
ALTER TABLE environmentsamples ADD column IF NOT EXISTS vectortype varchar(255);
1383413834

13835+
ALTER TABLE environments_history ADD COLUMN vectortype varchar(255);
13836+
ALTER TABLE environmentsamples_history ADD COLUMN vectortype varchar(255);
13837+
1383513838
INSERT INTO schema_version (version_number, comment) VALUES (561, 'Added vectors to the environment #13267');
1383613839
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***

sormas-ui/src/main/java/de/symeda/sormas/ui/environment/EnvironmentCreateForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class EnvironmentCreateForm extends AbstractEditForm<EnvironmentDto> {
3737
//@formatter:off
3838
private static final String HTML_LAYOUT = fluidRowLocs(EnvironmentDto.REPORT_DATE, EnvironmentDto.EXTERNAL_ID)
3939
+ fluidRowLocs(EnvironmentDto.ENVIRONMENT_MEDIA, "") + fluidRowLocs(EnvironmentDto.ENVIRONMENT_NAME, "") +
40-
fluidRowLocs(EnvironmentDto.VECTOR_TYPE, "")+
40+
fluidRowLocs(EnvironmentDto.VECTOR_TYPE, "") +
4141
loc(LOCATION_HEADING_LOC) +
4242
fluidRowLocs(EnvironmentDto.LOCATION) +
4343
fluidRowLocs("", EnvironmentDto.RESPONSIBLE_USER);

0 commit comments

Comments
 (0)