fix: log chips not forming making filtering not work (#4749)

* fix: log chips not forming making filtering not work

* fix: remove console log
This commit is contained in:
Vikrant Gupta 2024-03-27 01:01:24 +05:30 committed by GitHub
parent ae594061e9
commit e1679790f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -48,7 +48,6 @@ function LogGeneralField({
fieldValue,
linesPerRow = 1,
}: LogFieldProps): JSX.Element {
console.log('fieldKey:', fieldKey, linesPerRow);
const html = useMemo(
() => ({
__html: convert.toHtml(dompurify.sanitize(fieldValue)),

View File

@ -75,10 +75,13 @@ export const useTag = (
(value: string): void => {
const { tagKey } = getTagToken(value);
const parts = tagKey.split('-');
// this is done to ensure that `hello-world` also gets converted to `body CONTAINS hello-world`
const id = parts[parts.length - 1];
const key = parts.slice(0, -1).join('-');
let id = parts[parts.length - 1];
let key = parts.slice(0, -1).join('-');
if (parts.length === 1) {
id = '';
[key] = parts;
}
if (id === 'custom') {
const customValue = whereClauseConfig