diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a4e922d4..5263cee7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan - [#349](https://github.com/kobsio/kobs/pull/#349): [app] Fix the creation of a VirtualService in the Helm chart when no `additionalRoutes` are set. - [#350](https://github.com/kobsio/kobs/pull/#350): [app] Fix Docker image and request proxy. +- [#351](https://github.com/kobsio/kobs/pull/#351): [jaeger] Fix links and colors in Jaeger plugin. ### Changed diff --git a/plugins/plugin-jaeger/src/components/panel/details/TraceActions.tsx b/plugins/plugin-jaeger/src/components/panel/details/TraceActions.tsx index 93ebf25c4..2b85fc5ac 100644 --- a/plugins/plugin-jaeger/src/components/panel/details/TraceActions.tsx +++ b/plugins/plugin-jaeger/src/components/panel/details/TraceActions.tsx @@ -33,16 +33,13 @@ const TraceActions: React.FunctionComponent = ({ instance, t const copy = (): void => { if (navigator.clipboard) { - navigator.clipboard.writeText(`${window.location.host}/${pluginBasePath(instance)}/trace/${trace.traceID}`); + navigator.clipboard.writeText(`${window.location.host}${pluginBasePath(instance)}/trace/${trace.traceID}`); } setShowDropdown(false); }; const dropdownItems = [ - Details} - />, + Details} />, Compare , @@ -92,7 +89,7 @@ const TraceActions: React.FunctionComponent = ({ instance, t isOpen={showModal} onClose={(): void => setShowModal(false)} actions={[ - + , diff --git a/plugins/plugin-jaeger/src/utils/colors.ts b/plugins/plugin-jaeger/src/utils/colors.ts index cd084136e..4bdf1df41 100644 --- a/plugins/plugin-jaeger/src/utils/colors.ts +++ b/plugins/plugin-jaeger/src/utils/colors.ts @@ -56,7 +56,7 @@ export const getColorValue = (labelColor?: LabelProps['color']): string => { case 'purple': return 'var(--pf-global--palette--purple-300)'; case 'red': - return 'var(--pf-global--palette--red-300)'; + return 'var(--pf-global--palette--red-100)'; default: return 'var(--pf-global--palette--blue-300)'; }