Visually separate the kapacitor column
parent
b3d9dcc856
commit
43d98456a7
|
@ -97,8 +97,8 @@ const InfluxTable = ({
|
|||
<tr>
|
||||
<th className="source-table--connect-col" />
|
||||
<th>Source Name & Host</th>
|
||||
<th>Active Kapacitor</th>
|
||||
<th className="text-right" />
|
||||
<th>Active Kapacitor</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -129,7 +129,16 @@ const InfluxTable = ({
|
|||
</h5>
|
||||
<span>{s.url}</span>
|
||||
</td>
|
||||
<td>
|
||||
<td className="text-right">
|
||||
<a
|
||||
className="btn btn-xs btn-danger table--show-on-row-hover"
|
||||
href="#"
|
||||
onClick={() => handleDeleteSource(s)}
|
||||
>
|
||||
Delete Source
|
||||
</a>
|
||||
</td>
|
||||
<td className="source-table--kapacitor">
|
||||
{kapacitorDropdown(
|
||||
s.kapacitors,
|
||||
s,
|
||||
|
@ -138,15 +147,6 @@ const InfluxTable = ({
|
|||
handleDeleteKapacitor
|
||||
)}
|
||||
</td>
|
||||
<td className="text-right">
|
||||
<a
|
||||
className="link-danger"
|
||||
href="#"
|
||||
onClick={() => handleDeleteSource(s)}
|
||||
>
|
||||
Delete Source
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
)
|
||||
})}
|
||||
|
|
|
@ -165,3 +165,7 @@ br {
|
|||
.source-table--connect-col {
|
||||
width: 90px;
|
||||
}
|
||||
.source-table--kapacitor {
|
||||
border-left: 2px solid $g5-pepper;
|
||||
width: 278px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue