Fix width for Resample label (#71011)

Fix overflowing width for Resample label
pull/71041/head
Neel 2 years ago committed by GitHub
parent ddd96a36a7
commit 2216e40cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/expressions/ExpressionQueryEditor.tsx

@ -13,7 +13,7 @@ import { getDefaults } from './utils/expressionTypes';
type Props = QueryEditorProps<DataSourceApi<ExpressionQuery>, ExpressionQuery>;
const labelWidth = 14;
const labelWidth = 15;
type NonClassicExpressionType = Exclude<ExpressionQueryType, ExpressionQueryType.classic>;
type ExpressionTypeConfigStorage = Partial<Record<NonClassicExpressionType, string>>;

Loading…
Cancel
Save