diff --git a/CHANGELOG.md b/CHANGELOG.md index ba9bee1c..ede47cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- User profile UI tweaks ([#3443](https://github.com/grafana/oncall/pull/3443)) + ## v1.3.64 (2023-11-28) ### Fixed diff --git a/grafana-plugin/src/containers/Labels/Labels.module.css b/grafana-plugin/src/containers/Labels/Labels.module.css deleted file mode 100644 index c3a2af63..00000000 --- a/grafana-plugin/src/containers/Labels/Labels.module.css +++ /dev/null @@ -1,2 +0,0 @@ -.root { -} diff --git a/grafana-plugin/src/containers/Labels/Labels.tsx b/grafana-plugin/src/containers/Labels/Labels.tsx index 60fc1324..c30d9016 100644 --- a/grafana-plugin/src/containers/Labels/Labels.tsx +++ b/grafana-plugin/src/containers/Labels/Labels.tsx @@ -2,7 +2,6 @@ import React, { forwardRef, useCallback, useImperativeHandle, useState } from 'r import { ServiceLabels, ServiceLabelsProps } from '@grafana/labels'; import { Field } from '@grafana/ui'; -import cn from 'classnames/bind'; import { isEmpty } from 'lodash-es'; import { observer } from 'mobx-react'; @@ -10,10 +9,6 @@ import { LabelKeyValue } from 'models/label/label.types'; import { useStore } from 'state/useStore'; import { openErrorNotification } from 'utils'; -import styles from './Labels.module.css'; - -const cx = cn.bind(styles); - export interface LabelsProps { value: LabelKeyValue[]; errors: any; @@ -107,7 +102,7 @@ const Labels = observer( }, []); return ( -