Skip to content

Commit

Permalink
Fixed regression on EMPTYFOLDER flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Jun 5, 2024
1 parent b7c3d4e commit a8b1df2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,6 @@ private TestCaseStepActionExecution cleanValues(TestCaseStepActionExecution acti
case TestCaseStepAction.ACTION_EXECUTESQLSTOREPROCEDURE:
case TestCaseStepAction.ACTION_EXECUTESQLUPDATE:
case TestCaseStepAction.ACTION_SWIPE:
case TestCaseStepAction.ACTION_UPLOADROBOTFILE:
actionExecution.setValue3("");
actionExecution.setValue3Init("");
break;
Expand All @@ -621,6 +620,7 @@ private TestCaseStepActionExecution cleanValues(TestCaseStepActionExecution acti
case TestCaseStepAction.ACTION_CALLSERVICE:
case TestCaseStepAction.ACTION_GETROBOTFILE:
case TestCaseStepAction.ACTION_SCROLLTO:
case TestCaseStepAction.ACTION_UPLOADROBOTFILE:
break;
default:

Expand Down
32 changes: 19 additions & 13 deletions source/src/main/webapp/ReportingExecutionByTag.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,20 @@
</div>
</div>

<label id="countryLabel" class="bold marginTop10">Country :</label>
<button id="countrySelectAll" class="glyphicon glyphicon-check"
title="select all countries"></button>
<button id="countryUnselectAll" class="glyphicon glyphicon-unchecked"
title="unselect all countries"></button>
<button class="btn pull-right" type="button" data-toggle="collapse" data-target="#countryFilter" aria-expanded="true" aria-controls="col1"><span class="glyphicon glyphicon-chevron-down"></span></button>

<div class="form-group collapse in" id="countryFilter">
<div class="row">
<div class="col-lg-12">
<label id="countryLabel" class="bold marginTop10">Country :</label>
<button id="countrySelectAll" class="glyphicon glyphicon-check"
title="select all countries"></button>
<button id="countryUnselectAll" class="glyphicon glyphicon-unchecked"
title="unselect all countries"></button>
<button class="btn pull-right marginTop10" type="button" data-toggle="collapse" data-target="#countryFilter" aria-expanded="true" aria-controls="col1">
<span class="glyphicon glyphicon-chevron-down"></span>
</button>

<div class="form-group collapse in" id="countryFilter">
</div>
</div>
</div>

<label id="statusLabel" class="bold marginTop10">Status :</label>
Expand Down Expand Up @@ -500,11 +506,11 @@
<div class="panel-heading card" >
<span class="glyphicon glyphicon-list"></span>
<label id="List">List</label>
<!-- <div class="btn-group pull-right">
<button id="refreshTags" class="btn btn-default btn-xs marginRight10"
onclick="stopPropagation(event); loadTagHistoBar();"><span
class="glyphicon glyphicon-refresh"></span> <label id="refresh">Refresh</label></button>
</div>-->
<!-- <div class="btn-group pull-right">
<button id="refreshTags" class="btn btn-default btn-xs marginRight10"
onclick="stopPropagation(event); loadTagHistoBar();"><span
class="glyphicon glyphicon-refresh"></span> <label id="refresh">Refresh</label></button>
</div>-->
<!-- <span class="toggle glyphicon glyphicon-chevron-right pull-right"></span>-->
</div>
<div class="panel-body collapse in" id="listReport">
Expand Down

0 comments on commit a8b1df2

Please sign in to comment.