Skip to content

Commit

Permalink
Make URLLOGIN bigger.
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Apr 2, 2024
1 parent 1da2c39 commit 296926c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions source/src/main/resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6297,5 +6297,11 @@ ALTER TABLE countryenvparam_log MODIFY Creator VARCHAR(45);

-- 1769
INSERT INTO `parameter` (`system`, `param`, `value`, `description`)
VALUES ('', 'cerberus_appium_scroll_endTopScreenPercentageScreenHeight', '0.125', 'Float value between 0 and 1 that represents the percentage of the screen height where the scroll ends. 0 for the top of the screen, 0.5 for the middle.')
,('', 'cerberus_appium_scroll_startBottomPercentageScreenHeight', '0.8', 'Float value between 0 and 1 that represents the percentage of the screen height where the scroll starts. 0.5 for the middle of the screen, 1 for the bottom.');
VALUES ('', 'cerberus_appium_scroll_endTopScreenPercentageScreenHeight', '0.125', 'Float value between 0 and 1 that represents the percentage of the screen height where the scroll ends. 0 for the top of the screen, 0.5 for the middle. (default to : 0.125)')
,('', 'cerberus_appium_scroll_startBottomPercentageScreenHeight', '0.8', 'Float value between 0 and 1 that represents the percentage of the screen height where the scroll starts. 0.5 for the middle of the screen, 1 for the bottom. (default to : 0.8)');

-- 1770
ALTER TABLE countryenvironmentparameters MODIFY COLUMN URLLOGIN varchar(300) DEFAULT '' NOT NULL;

-- 1771
ALTER TABLE application MODIFY COLUMN SubSystem varchar(200) DEFAULT '' NOT NULL;
2 changes: 1 addition & 1 deletion source/src/main/webapp/js/pages/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ function appendEnvironmentRow(env) {
var ipInput = $("<input maxlength=\"150\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "IP") + " --\">").addClass("form-control input-sm").val(env.ip);
var domainInput = $("<input maxlength=\"150\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "domain") + " --\">").addClass("form-control input-sm").val(env.domain);
var urlInput = $("<input maxlength=\"150\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "URL") + " --\">").addClass("form-control input-sm").val(env.url);
var urlLoginInput = $("<input maxlength=\"200\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "URLLOGIN") + " --\">").addClass("form-control input-sm").val(env.urlLogin);
var urlLoginInput = $("<input maxlength=\"300\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "URLLOGIN") + " --\">").addClass("form-control input-sm").val(env.urlLogin);
var var1Input = $("<input maxlength=\"200\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "Var1") + " --\">").addClass("form-control input-sm").val(env.var1);
var var2Input = $("<input maxlength=\"200\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "Var2") + " --\">").addClass("form-control input-sm").val(env.var2);
var var3Input = $("<input maxlength=\"200\" placeholder=\"-- " + doc.getDocLabel("countryenvironmentparameters", "Var3") + " --\">").addClass("form-control input-sm").val(env.var3);
Expand Down

0 comments on commit 296926c

Please sign in to comment.