We might need to fix the JSDOC in phoenix repo. But since this errors are visible in docs site, I'm mentioning them here.
Current (broken) docs:
errorObj.fix = {
replace: "corrected text", // doesn't work
rangeOffset: { start: {Number}, end: {Number} }
};
What actually works:
errorObj.fix = {
replaceText: "corrected text", // works
rangeOffset: { start: {Number}, end: {Number} }
};
We might need to fix the JSDOC in phoenix repo. But since this errors are visible in docs site, I'm mentioning them here.
replaceproperty. The actual working property name isreplaceText. This causes fix buttons to not appear when following the docsCurrent (broken) docs:
What actually works: