Skip to content

Commit

Permalink
Resize suite id field (#150)
Browse files Browse the repository at this point in the history
* Expand suiteId field

* Expand Chain field length in notify Jira topic
  • Loading branch information
antonovsergey93 authored and dspavlov committed Aug 9, 2019
1 parent 38e3465 commit 230935d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ignite-tc-helper-web/src/main/webapp/prs.html
Expand Up @@ -132,7 +132,7 @@
var chainAtServer = result[i];

res += "Server: <input type='text' name='serverId' value='" + chainAtServer.serverId + "' readonly>";
res += "Chain: <input type='text' name='suiteId' value='" + chainAtServer.suiteId + "' size='60' readonly>";
res += "Chain: <input type='text' name='suiteId' value='" + chainAtServer.suiteId + "' size='45' readonly>";
res += "Branch: <input type='text' name='branchForTc' class='branchForTc" + chainAtServer.serverId +
"' required> ";
res += "Ticket: <input type='text' name='ticketId'>";
Expand All @@ -159,7 +159,7 @@
var chainAtServer = result[i];

res += "Server: <input type='text' name='serverId' value=" + chainAtServer.serverId +" readonly>" ;
res += "Chain: <input type='text' name='suiteId' value='" + chainAtServer.suiteId + "' readonly>";
res += "Chain: <input type='text' name='suiteId' value='" + chainAtServer.suiteId + "' size='45' readonly>";
res += "Branch: <input type='text' name='branchForTc' class='branchForTc" + chainAtServer.serverId +
"' required> ";
res += "Ticket: <input type='text' name='ticketId'> ";
Expand Down

0 comments on commit 230935d

Please sign in to comment.