Skip to content

Commit

Permalink
#2030 Don't hide lists on refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 3, 2021
1 parent 482adaa commit e21c640
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h4>
<div class="empty-message">No records</div>
</div>

<div class="col-md-12" ng-show="!$vm.list.loading && $vm.list.values.length !== 0">
<div class="col-md-12" ng-show="$vm.list.values.length !== 0">
<psearch control="$vm.list"></psearch>

<table class="table table-striped case-tags">
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/views/partials/alert/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h3 class="box-title">
<div class="empty-message">No records</div>
</div>

<div class="col-md-12" ng-show="!$vm.list.loading && $vm.list.values.length !== 0">
<div class="col-md-12" ng-show="$vm.list.values.length !== 0">
<psearch control="$vm.list"></psearch>

<table class="table tbody-stripped case-list">
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/views/partials/case/case.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h3 class="box-title">
<div class="empty-message">No records</div>
</div>

<div class="col-md-12" ng-show="!$vm.list.loading && $vm.list.values.length !== 0">
<div class="col-md-12" ng-show="$vm.list.values.length !== 0">
<psearch control="$vm.list"></psearch>

<table class="table table-striped case-list">
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/views/partials/case/case.tasks.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h4>
</div>
</div>

<div class="row" ng-if="!list.loading && list.values.length !== 0">
<div class="row" ng-if="list.values.length !== 0">
<div class="col-md-12">

<psearch control="list"></psearch>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h4>
</div>

<!-- list of artifacts-->
<div class="col-md-12" ng-show="!artifacts.loading && artifacts.values.length !== 0">
<div class="col-md-12" ng-show="artifacts.values.length !== 0">
<psearch ng-if="!switchTEList" control="artifacts"></psearch>

<table class="table table-striped table-hover case-list">
Expand Down

0 comments on commit e21c640

Please sign in to comment.