diff options
author | Panagiotis Karalis <pkaralis@intracom-telecom.com> | 2018-11-05 17:52:48 +0200 |
---|---|---|
committer | Dan Xu <xudan16@huawei.com> | 2018-11-07 08:15:14 +0000 |
commit | 16d199278064f28ccfc6a295f3e7202467b79b34 (patch) | |
tree | 0843fd0eff81868b90837bc990bcc77f1f8828b2 | |
parent | 8ac6a7ef3809cb511b10494d9c1f4654db1e071e (diff) |
Fix some genaral syntax errors
Some syntax errors have been noticed and fixed.
Change-Id: I8fd22e6c3242f0f029ed262e2eb63677bed41017
Signed-off-by: Panagiotis Karalis <pkaralis@intracom-telecom.com>
4 files changed, 9 insertions, 8 deletions
diff --git a/3rd_party/static/swagger/endpoint.html b/3rd_party/static/swagger/endpoint.html index 4ae3bde..8f3c43a 100644 --- a/3rd_party/static/swagger/endpoint.html +++ b/3rd_party/static/swagger/endpoint.html @@ -70,6 +70,7 @@ </div> {% endfor %} </div> + </div> </div><!-- /.container --> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> diff --git a/3rd_party/static/testapi-ui/components/application/application.html b/3rd_party/static/testapi-ui/components/application/application.html index 17b17c6..307fe6a 100644 --- a/3rd_party/static/testapi-ui/components/application/application.html +++ b/3rd_party/static/testapi-ui/components/application/application.html @@ -11,12 +11,12 @@ <div class="container-fluid common-main-container"> <div class="top-site-banner"> <div class="container"> - <p> + <!--<p>--> <p class="p1">Complete this application then start your CVP journey</p> <!-- <a href="https://www.openstack.org/summit/sydney-2017/" class="top-site-banner-button">Register now</a> --> - </p> + <!--</p>--> </div> </div> diff --git a/3rd_party/static/testapi-ui/components/results-report/resultsReport.html b/3rd_party/static/testapi-ui/components/results-report/resultsReport.html index e2b7f66..9365f89 100644 --- a/3rd_party/static/testapi-ui/components/results-report/resultsReport.html +++ b/3rd_party/static/testapi-ui/components/results-report/resultsReport.html @@ -12,11 +12,11 @@ </div> </div> -<strong>Total: {{ctrl.statistics.total}}, Pass: {{ ctrl.statistics.pass}}, Rate: {{ ctrl.statistics.pass / ctrl.statistics.total * 100 | number:2 }}%</strong></br> -<strong>Mandatory Total: {{ctrl.statistics.mandatory.total}}, Pass: {{ ctrl.statistics.mandatory.pass }}, Rate: {{ ctrl.statistics.mandatory.pass / ctrl.statistics.mandatory.total * 100 | number:2 }}%</strong></br> -<strong>Optional Total: {{ctrl.statistics.optional.total}}, Pass: {{ ctrl.statistics.optional.pass }}, Rate: {{ ctrl.statistics.optional.pass / ctrl.statistics.optional.total * 100 | number:2 }}%</strong></br> +<strong>Total: {{ctrl.statistics.total}}, Pass: {{ ctrl.statistics.pass}}, Rate: {{ ctrl.statistics.pass / ctrl.statistics.total * 100 | number:2 }}%</strong><br /> +<strong>Mandatory Total: {{ctrl.statistics.mandatory.total}}, Pass: {{ ctrl.statistics.mandatory.pass }}, Rate: {{ ctrl.statistics.mandatory.pass / ctrl.statistics.mandatory.total * 100 | number:2 }}%</strong><br /> +<strong>Optional Total: {{ctrl.statistics.optional.total}}, Pass: {{ ctrl.statistics.optional.pass }}, Rate: {{ ctrl.statistics.optional.pass / ctrl.statistics.optional.total * 100 | number:2 }}%</strong><br /> <hr> -<strong>{{ ctrl.validation }}</strong></br> +<strong>{{ ctrl.validation }}</strong><br /> <div> <hr> diff --git a/3rd_party/static/testapi-ui/components/results/results.html b/3rd_party/static/testapi-ui/components/results/results.html index 80d08d6..aebc0f2 100644 --- a/3rd_party/static/testapi-ui/components/results/results.html +++ b/3rd_party/static/testapi-ui/components/results/results.html @@ -10,7 +10,7 @@ <a class="btn btn-success cvp-btn medium accent-color regular-button" ng-click="ctrl.uploadFile()"><span>upload result</span></a> </div> <div> -<lable>{{ctrl.uploadState}}</label> +<label>{{ctrl.uploadState}}</label> </div> </form> <div class="row" style="margin-bottom:24px;"></div> @@ -99,7 +99,7 @@ <span class="sr-only">Error:</span> {{ctrl.error}} </div> -</div> + <style> .button-disabled { |