Add support rim link to frontend.

This commit is contained in:
chubtub 2022-02-16 16:05:37 -05:00
parent 1d57ab0d09
commit 565ccd6758

View File

@ -26,6 +26,7 @@
<th>PCR Index</th>
<th>Digest Value</th>
<th>Base RIM</th>
<th>Support RIM</th>
</tr>
</thead>
</table>
@ -56,6 +57,13 @@
render: function(data, type, full, meta) {
return rimDetailsLink(full.baseRimId);
}
},
{data: 'supportRimId',
orderable: false,
searchable: false,
render: function(data, type, full, meta) {
return rimDetailsLink(full.supportRimId);
}
}
];