1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00
This commit is contained in:
sjaanus 2025-07-02 12:56:32 +03:00
parent 0f038bb765
commit 26cb8e893e
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF
2 changed files with 1 additions and 7 deletions

View File

@ -100,7 +100,7 @@ const EventCard = ({ entry }: IEventCardProps) => {
show={ show={
<> <>
<StyledDefinitionTerm> <StyledDefinitionTerm>
Transaction id: Group id:
</StyledDefinitionTerm> </StyledDefinitionTerm>
<dd> <dd>
<Link to={getGroupIdLink()}> <Link to={getGroupIdLink()}>

View File

@ -131,7 +131,6 @@ export const FilterItem: FC<IFilterItemProps> = ({
); );
onChange({ operator: currentOperator, values: newOptions }); onChange({ operator: currentOperator, values: newOptions });
} else { } else {
console.log('woggle');
const newOptions = [ const newOptions = [
...(selectedOptions ?? []), ...(selectedOptions ?? []),
( (
@ -141,11 +140,6 @@ export const FilterItem: FC<IFilterItemProps> = ({
} }
).value, ).value,
]; ];
console.log(
{ operator: currentOperator, values: newOptions },
selectedOptions,
value,
);
onChange({ operator: currentOperator, values: newOptions }); onChange({ operator: currentOperator, values: newOptions });
} }
}; };