mirror of
https://github.com/usebruno/bruno.git
synced 2025-01-03 04:29:09 +01:00
fix: asset value cursor issue while editing
This commit is contained in:
parent
b9ec0acab4
commit
a63afd6c0b
@ -90,7 +90,7 @@ const parseAssertionOperator = (str = '') => {
|
|||||||
'isArray'
|
'isArray'
|
||||||
];
|
];
|
||||||
|
|
||||||
const [operator, ...rest] = str.trim().split(' ');
|
const [operator, ...rest] = str.split(' ');
|
||||||
const value = rest.join(' ');
|
const value = rest.join(' ');
|
||||||
|
|
||||||
if (unaryOperators.includes(operator)) {
|
if (unaryOperators.includes(operator)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user