logic: If comment exists and not enough room → display comment with abbreviation "..." and a new dropdown button that extends row on click.
Not sure how this logic could be achieved, searches return js libraries instead. Complete newbie :(
Currently when there's too much text in one section the entire row becomes vertically wider. The html code is nothing fancy with no js:
'''
<thead class="thead-dark">
<tr>
<th class = "time_header">Time</th>
<th class = "date_header">Date</th>
<th class = "type_header">Type</th>
<th class = "value Header">Value</th>
<th class = "comment_header">Comment</th>
</tr>
</thead>
<tbody>
{{#each userHistoryData}}
<tr>
<td>{{convert2Time this.date}}</td>
<td>{{convert2Date this.date}}</td>
<td>{{this.type}}</td>
<td>{{this.value}}</td>
<td>{{this.comment}}</td>
</tr>
{{/each}}
</tbody>
</table>
'''