diff options
Diffstat (limited to '3rd_party/static/testapi-ui/components/directory')
-rw-r--r-- | 3rd_party/static/testapi-ui/components/directory/directory.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/3rd_party/static/testapi-ui/components/directory/directory.html b/3rd_party/static/testapi-ui/components/directory/directory.html index 535110e..3be13d4 100644 --- a/3rd_party/static/testapi-ui/components/directory/directory.html +++ b/3rd_party/static/testapi-ui/components/directory/directory.html @@ -2,7 +2,7 @@ <h3>OPNFV Verified Product Directory</h3> <div> <h4>Compliance Marks Granted to {{ctrl.companyID}}</h4> - <img src="api/v1/cvp/applications/getlogo/{{ctrl.company_logo}}" /> + <img src="api/v1/cvp/applications/getlogo/{{ctrl.company_logo}}" alt="Company Logo"> <table class="table table-striped table-hover"> <thead> <tr> @@ -18,13 +18,13 @@ <tbody class="directory_inner" style="overflow: hidden; text-overflow: ellipsis;"> <tr style="vertical-align: center;" ng-repeat="prod in ctrl.directory" ng-if="prod.organization_name==ctrl.companyID && prod.approved=='true'"> - <td width="250">{{ prod.product_name}}</td> - <td width="350">{{ prod.description}}</td> - <td width="150">{{ prod.ovp_category}}</td> - <td width="150">{{ prod.ovp_version}}</td> + <td style="width: 250px;">{{ prod.product_name}}</td> + <td style="width: 350px;">{{ prod.description}}</td> + <td style="width: 150px;">{{ prod.ovp_category}}</td> + <td style="width: 150px;">{{ prod.ovp_version}}</td> <td><a href="{{ prod.product_documentation}}" target="_blank">{{ prod.product_documentation}}</a></td> - <td width="150">{{ prod.sut_version}}</td> - <td width="150">{{ prod.sut_hw_version}}</td> + <td style="width: 150px;">{{ prod.sut_version}}</td> + <td style="width: 150px;">{{ prod.sut_hw_version}}</td> </tr> </tbody> </table> |