Skip to content

Commit

Permalink
Merge pull request #1368 from SCADA-LTS/feature_r23/#274_In_Virtual_d…
Browse files Browse the repository at this point in the history
…ata_source_editing_button_cancel_doesnt_respone_correctly

#274 In Virtual data source editing, button "cancel" doesn't respone …
  • Loading branch information
grzesiekb authored Sep 7, 2020
2 parents 929bf4d + 05248a3 commit 5d62f36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ branches:
- "/^siv/master.*$/"
- "/^feature/#1342.*$/"
- "/^f_1165_1183/#1198.*$/"
- "/^feature_r23/#274.*$/"
- "/^feature_r23/#1349.*$/"
- "/^feature_rs23/#1359.*$/"
notifications:
Expand Down Expand Up @@ -72,6 +73,9 @@ after_script:
- docker version
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- export TAGISSUE=`echo $TRAVIS_BRANCH | egrep -o '[0-9][0-9][0-9][0-9]' | head -n1`
- export TAGOLDISSUE=`echo $TRAVIS_BRANCH | egrep -o '[0-9][0-9][0-9]' | head -n1`
- echo $TAGISSUE
- export TAGISSUE=`if [ "$TAGISSUE" == "" ]; then echo $TAGOLDISSUE; else echo $TAGISSUE ; fi`
- echo $TAGISSUE
- export TAG_DEV_OR_ISSUE=`if [ "$TRAVIS_BRANCH" == "siv/develop" ]; then echo "siv_dev"; else echo $TAGISSUE ; fi`
- echo $TAG_DEV_OR_ISSUE
Expand Down
2 changes: 1 addition & 1 deletion WebContent/WEB-INF/jsp/pointEdit/buttons.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</c:choose>

<input type="button" value="<fmt:message key="common.cancel"/>"
onclick="window.location='data_point_details.shtm?dpid=${form.id}';"/>
onclick="window.location='data_source_edit.shtm?dsid=${dataSource.id}&pid=${form.id}';"/>
</td>
<td></td>
</tr>
Expand Down

0 comments on commit 5d62f36

Please sign in to comment.