mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-06 02:06:06 +08:00
fix: remove unnecessary styles for the actions section in the query builder (#3057)
This commit is contained in:
parent
c1664dde6a
commit
0750231b4b
@ -1,6 +0,0 @@
|
||||
import { Col } from 'antd';
|
||||
import styled from 'styled-components';
|
||||
|
||||
export const ActionsWrapperStyled = styled(Col)`
|
||||
padding-right: 1rem;
|
||||
`;
|
@ -10,8 +10,6 @@ import { memo, useEffect, useMemo } from 'react';
|
||||
import { Formula, Query } from './components';
|
||||
// ** Types
|
||||
import { QueryBuilderProps } from './QueryBuilder.interfaces';
|
||||
// ** Styles
|
||||
import { ActionsWrapperStyled } from './QueryBuilder.styled';
|
||||
|
||||
export const QueryBuilder = memo(function QueryBuilder({
|
||||
config,
|
||||
@ -87,7 +85,7 @@ export const QueryBuilder = memo(function QueryBuilder({
|
||||
</Row>
|
||||
</Col>
|
||||
|
||||
<ActionsWrapperStyled span={24}>
|
||||
<Col span={24}>
|
||||
<Row gutter={[20, 0]}>
|
||||
<Col>
|
||||
<Button
|
||||
@ -111,7 +109,7 @@ export const QueryBuilder = memo(function QueryBuilder({
|
||||
</Col>
|
||||
{actions}
|
||||
</Row>
|
||||
</ActionsWrapperStyled>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user