0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00

use text input on all non-multi-operator queries (#4334)

Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
This commit is contained in:
Sam Winslow 2021-05-14 12:19:09 -04:00 committed by GitHub
parent c466a58837
commit 01304ff3d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,7 @@ export function PropertyValue({
return (
<>
{isOperatorRegex(operator) ? (
{!isOperatorMulti(operator) ? (
<AutoComplete
{...commonInputProps}
onChange={(val) => {

View File

@ -14,6 +14,7 @@
padding-right: 8px;
position: relative;
top: -4px;
user-select: none;
}
}