Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
brittanyjoiner15 committed Jun 5, 2020
1 parent 1838d5e commit 7ac790b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import React, { useState } from 'react';
import styled from 'styled-components';
import {
TRACE_ID,
TRANSACTION_ID
TRANSACTION_ID,
} from '../../../../../../common/elasticsearch_fieldnames';
import { useUrlParams } from '../../../../../hooks/useUrlParams';
import { px, unit, units } from '../../../../../style/variables';
Expand Down Expand Up @@ -68,10 +68,10 @@ export const ErrorMarker: React.FC<Props> = ({ mark }) => {
...(error.trace?.id ? [`${TRACE_ID} : "${error.trace?.id}"`] : []),
...(error.transaction?.id
? [`${TRANSACTION_ID} : "${error.transaction?.id}"`]
: [])
: []),
].join(' and '),
rangeFrom,
rangeTo
rangeTo,
};

return (
Expand Down

0 comments on commit 7ac790b

Please sign in to comment.