Merge pull request #958 from palash-signoz/style-trace-search

bug: style-trace-search is fixed
This commit is contained in:
palash-signoz 2022-04-07 11:03:40 +05:30 committed by GitHub
commit 71cb70c62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 48 additions and 51 deletions

View File

@ -32,6 +32,7 @@ function TagValue(props: TagValueProps): JSX.Element {
return (
<SelectComponent
value={selectedValues[0]}
onSelect={(value: unknown): void => {
if (typeof value === 'string') {
setLocalSelectedTags((tags) => [

View File

@ -116,6 +116,7 @@ function AllTags({
</Wrapper>
<ButtonContainer>
<Space align="start">
<Button onClick={onResetHandler}>Reset</Button>
<Button
type="primary"
@ -124,6 +125,7 @@ function AllTags({
>
Run Query
</Button>
</Space>
</ButtonContainer>
</Container>
);

View File

@ -6,7 +6,7 @@ export const Container = styled(Card)`
min-height: 20vh;
width: 100%;
z-index: 2;
position: absolute;
position: absolute !important;
.ant-card-body {
padding-bottom: 0;
@ -35,20 +35,16 @@ export const Wrapper = styled.div`
}
`;
export const ButtonContainer = styled.div`
export const ButtonContainer = styled(Card)`
display: flex;
justify-content: flex-end;
align-items: center;
background-color: #303030;
padding-top: 11px;
padding-bottom: 11px;
padding-right: 38.01px;
margin-top: 1rem;
padding-top: 11px !important;
padding-bottom: 11px !important;
padding-right: 38.01px !important;
> button:nth-child(1) {
margin-right: 1rem;
}
margin-top: 1rem !important;
`;
export const CurrentTagsContainer = styled.div`

View File

@ -1,5 +1,4 @@
import { CaretRightFilled } from '@ant-design/icons';
import { Space } from 'antd';
import useClickOutside from 'hooks/useClickOutside';
import React, { useEffect, useRef, useState } from 'react';
import { connect, useDispatch, useSelector } from 'react-redux';
@ -113,7 +112,6 @@ function Search({
};
return (
<Space direction="vertical" style={{ width: '100%' }}>
<Container ref={tagRef}>
<SearchComponent
onChange={(event): void => onChangeHandler(event.target.value)}
@ -147,7 +145,6 @@ function Search({
<Tags updateFilters={updateFilters} onChangeHandler={onChangeHandler} />
)}
</Container>
</Space>
);
}

View File

@ -6,6 +6,7 @@ const { Search } = Input;
export const Container = styled.div`
display: flex;
position: relative;
width: 100%;
`;
export const SearchComponent = styled(Search)`