fix: asset value cursor issue while editing

This commit is contained in:
Pooja Belaramani 2024-12-19 16:04:52 +05:30
parent b9ec0acab4
commit a63afd6c0b

View File

@ -90,7 +90,7 @@ const parseAssertionOperator = (str = '') => {
'isArray'
];
const [operator, ...rest] = str.trim().split(' ');
const [operator, ...rest] = str.split(' ');
const value = rest.join(' ');
if (unaryOperators.includes(operator)) {