Skip to content

Commit

Permalink
Merge pull request #5101 from waldenraines/9730
Browse files Browse the repository at this point in the history
Fixes #9730: show message when no CV versions exist, BZ1201410.
  • Loading branch information
Walden Raines committed Mar 12, 2015
2 parents a22e93f + c69bc8b commit aeb1817
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -13,7 +13,13 @@
ng-model="filterTerm"/>
</div>

<table class="table table-striped table-bordered" bst-table="table" ng-class="{'table-mask': loadingVersions}">
<p bst-alert="info" ng-show="versions.length === 0">
<span translate>
This Content View does not have any versions, create your first Content View Version by using the "Publish New Version" button on the right.
</span>
</p>

<table class="table table-striped table-bordered" ng-show="versions.length > 0" bst-table="table" ng-class="{'table-mask': loadingVersions}">
<thead>
<tr bst-table-head>
<th bst-table-column><span translate>Version</span></th>
Expand Down

0 comments on commit aeb1817

Please sign in to comment.