Truncating longer versions in Application Listing view

This commit truncates the version attribute of the application if the version is longer to fit the application view container.

fixes /wso2/product-iots#1311
revert-dabc3590
Madawa Soysa 7 years ago
parent 49567426fa
commit 15616dc77c

@ -3,7 +3,7 @@
<img src="">
<div class="app-info">
<h4 title="{{name}}">{{name}}</h4>
<p>v{{version}}</p>
<p class="truncate">v{{version}}</p>
</div>
</div>
{{/each}}

@ -3,7 +3,7 @@
<img src="">
<div class="app-info">
<h4 title="{{name}}">{{name}}</h4>
<p>v{{version}}</p>
<p class="truncate">v{{version}}</p>
</div>
</div>
{{/each}}

Loading…
Cancel
Save