From 08ad2917605a42010c3f33e5bb61f9384a1304b7 Mon Sep 17 00:00:00 2001 From: Andrei Belov Date: Thu, 19 Sep 2024 20:09:16 +0400 Subject: [PATCH] UI: fix arguments table width (#1710) * UI: fix arguments table width Closes #1696. * Update changelog --------- Co-authored-by: William Dumont --- CHANGELOG.md | 6 +++++- internal/web/ui/src/features/component/Table.module.css | 3 +-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 442c238ef2..89ee566531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,10 +15,14 @@ Main (unreleased) - Update yet-another-cloudwatch-exporter from v0.60.0 vo v0.61.0: (@morreymeyer) - Fixes a bug where cloudwatch S3 metrics are reported as `0` + +### Other changes + +- Small fix in UI stylesheet to fit more content into visible table area. (@defanator) + - Fixed incorrect debug metric names in `otelcol.exporter.awss3`, `otelcol.exporter.otlp`, `otelcol.processor.batch`, `otelcol.processor.deltatocumulative` and `otelcol.processor.otlp` which have changed due to an upstream breaking change. The dashboards and alerts in the mixin have also been fixed. (@thampiotr) - v1.4.0-rc.2 ----------------- diff --git a/internal/web/ui/src/features/component/Table.module.css b/internal/web/ui/src/features/component/Table.module.css index 70f7d1b88e..41409ff7c4 100644 --- a/internal/web/ui/src/features/component/Table.module.css +++ b/internal/web/ui/src/features/component/Table.module.css @@ -1,7 +1,6 @@ .table { border-collapse: collapse; width: 100%; - table-layout: fixed; } .table td, @@ -49,4 +48,4 @@ content: "▲"; float: right; } -} \ No newline at end of file +}