mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-05-07 18:48:39 +00:00
lint
This commit is contained in:
@@ -181,9 +181,9 @@ const CodeEditor = forwardRef(
|
|||||||
return page;
|
return page;
|
||||||
};
|
};
|
||||||
|
|
||||||
const getFoldRanges = (state) => {
|
const getFoldRanges = (state)=>{
|
||||||
const folds = [];
|
const folds = [];
|
||||||
state.field(foldState, false)?.between(0, state.doc.length, (from, to) => {
|
state.field(foldState, false)?.between(0, state.doc.length, (from, to)=>{
|
||||||
folds.push({ from, to });
|
folds.push({ from, to });
|
||||||
});
|
});
|
||||||
return folds;
|
return folds;
|
||||||
@@ -293,11 +293,11 @@ const CodeEditor = forwardRef(
|
|||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const restoreFolds = (view, folds) => {
|
const restoreFolds = (view, folds)=>{
|
||||||
if (!folds?.length) return;
|
if(!folds?.length) return;
|
||||||
|
|
||||||
view.dispatch({
|
view.dispatch({
|
||||||
effects: folds.map(f => foldEffect.of(f))
|
effects : folds.map((f)=>foldEffect.of(f))
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user