adds an id for dragondrops

This commit is contained in:
Hill, John (ARC-TI)[KBR Wyle Services, LLC] 2024-07-12 20:16:37 -07:00
parent 9e7d042eb6
commit 12fbc3d562

View File

@ -21,16 +21,20 @@
--> -->
<template> <template>
<div class="c-lad-table-wrapper u-style-receiver js-style-receiver" :class="staleClass"> <div
<table aria-label="lad table" class="c-table c-lad-table" :class="applyLayoutClass"> id="lad-table-drop-area"
class="c-lad-table-wrapper u-style-receiver js-style-receiver"
:class="staleClass"
>
<table class="c-table c-lad-table" :class="applyLayoutClass">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th scope="col">Name</th>
<th v-if="showTimestamp">Timestamp</th> <th v-if="showTimestamp" scope="col">Timestamp</th>
<th>Value</th> <th scope="col">Value</th>
<th v-if="hasUnits">Units</th> <th v-if="hasUnits" scope="col">Units</th>
<th v-if="showType">Type</th> <th v-if="showType" scope="col">Type</th>
<th v-for="limitColumn in limitColumnNames" :key="limitColumn.key"> <th v-for="limitColumn in limitColumnNames" :key="limitColumn.key" scope="col">
{{ limitColumn.label }} {{ limitColumn.label }}
</th> </th>
</tr> </tr>