Merge pull request #3682 from pooja-bruno/fix/asset-cursor-issue-while-editing

fix: asset value cursor issue while editing
This commit is contained in:
lohit
2024-12-31 16:39:09 +05:30
committed by GitHub

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)) {