Skip to content

Commit

Permalink
feat: 【产品功能】仪表盘事件插件支持自定义输入维度 --Story=120792870
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 24298
  • Loading branch information
liangling0628 committed Nov 20, 2024
1 parent c405f51 commit c585ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/event/src/components/dimension-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default class DimensionInput extends React.PureComponent<IDimensionInputP
render(): JSX.Element {
const { variableQuery, dimension, dimensionList, onDimensionChange } = this.props;
const selectProps: any = {};
!variableQuery && (selectProps.mode = 'multiple');
!variableQuery && (selectProps.mode = 'tags');
return (
<LanguageContext.Consumer>
{({ language }) => (
Expand All @@ -79,7 +79,7 @@ export default class DimensionInput extends React.PureComponent<IDimensionInputP
className='ant-select-selection-item-remove'
onClick={item.onClose}
>
<CloseOutlined />
<CloseOutlined rev={''} />
</span>
</span>
</Tooltip>
Expand Down

0 comments on commit c585ccf

Please sign in to comment.