change(ui) - text changes
This commit is contained in:
parent
709fbedf6e
commit
79deaa2ef0
2 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ const EventRow = React.memo((props: Props) => {
|
|||
</div>
|
||||
);
|
||||
}) : (
|
||||
<div className="ml-4 color-gray-medium text-sm pt-2">No records captured.</div>
|
||||
<div className="ml-4 color-gray-medium text-sm pt-2">None captured.</div>
|
||||
)
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ interface Props {
|
|||
function XRayButton(props: Props) {
|
||||
const { isActive } = props;
|
||||
return (
|
||||
<Popup content="Get a quick overview on the issues in this replay." delay={0} disabled={isActive}>
|
||||
<Popup content="Get a quick overview on the issues in this session." delay={0} disabled={isActive}>
|
||||
<button className={cn(stl.wrapper, { [stl.default] : !isActive, [stl.active] : isActive})} onClick={props.onClick}>
|
||||
X-RAY
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue