We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02f306 commit 15fbde3Copy full SHA for 15fbde3
client/src/components/prometheusModal/prometheusModal.tsx
@@ -396,7 +396,7 @@ export function PrometheusQueryBox({
396
397
{alerts.map((alert, idx) => (
398
<div key={idx} className="mb-2">
399
- <div className="fw-normal text-dark medium">
+ <div className="fw-normal text-dark medium text-truncate">
400
{alert.description || alert.alertName}
401
</div>
402
<div
@@ -407,6 +407,7 @@ export function PrometheusQueryBox({
407
>
408
{alert.value}
409
410
+ {idx < alerts.length - 1 && <hr className="my-2" />}
411
412
))}
413
</CardBody>
0 commit comments