Dashboard doesn't render correct size for UI Template - how to fix?

How do I fix this problem? (see below: it's me hitting F5 repeatedly showing it renders differently each time. The full table is what is desired)

For reference, the code is just a very simple table as below:

<h3>Register of Light Fixtures</h3>

<table>
    <tr style="font-weight:800; background-color:rgba(20,20,20,.6);">
        <td>ID</td>
        <td>Location</td>
        <td>Name</td>
        <td>Type</td>
        <td>Resolution</td>
        <td>Added</td>
        <td>Delete*</td>
    </tr>
    <tr ng-repeat="(key, value) in msg.fixtures">
        <td>{{key}}</td>
        <td>{{value.friendly_location}}</td>
        <td>{{value.friendly_name}}</td>
        <td>{{value.type}}</td>
        <td>{{value.resolution}}</td>
        <td style="color:#888;">{{value.created_time}} {{value.created_date}}</td>
        <td><md-button ng-click="send({action: 'delete', topic: key})">Del</md-button></td>
    </tr>
</table>

Set a fixed size ?

I guess this is an option for dashboards that don't vary in size too much. Wondered if there was another way. I guess not :no_mouth:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.