You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Chore: Implement cSpell to detect spelling mistakes in codebase (#10001)
Co-authored-by: Helmut K. C. Tessarek <tessarek@evermeet.cx> Co-authored-by: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com>
This commit is contained in:
@@ -38,7 +38,7 @@ describe('clipboardUtils', () => {
|
||||
expect(copyableContent.html).toEqual(`<div><img src="${localImage}"></div>`);
|
||||
});
|
||||
|
||||
test('should be able to process mutiple images', () => {
|
||||
test('should be able to process multiple images', () => {
|
||||
const localImage1 = 'file:///home/some/path/test1.jpg';
|
||||
const localImage2 = 'file:///home/some/path/test2.jpg';
|
||||
const localImage3 = 'file:///home/some/path/test3.jpg';
|
||||
|
||||
@@ -18,7 +18,7 @@ function htmlToMd(): HtmlToMd {
|
||||
|
||||
function removeImageUrlAttributes(htmlContent: string): string {
|
||||
// We need to remove extra url params from the image URLs while copying
|
||||
// because some offline edtors do not show the image if there is
|
||||
// because some offline editors do not show the image if there is
|
||||
// an extra parameter in it's path.
|
||||
// Related to - https://github.com/laurent22/joplin/issues/4602
|
||||
const removeParametersFromUrl = (url: string) => {
|
||||
|
||||
@@ -75,7 +75,7 @@ export default function useFormNote(dependencies: HookDependencies) {
|
||||
|
||||
// Increasing the value of this counter cancels any ongoing note refreshes and starts
|
||||
// a new refresh.
|
||||
const [formNoteRefeshScheduled, setFormNoteRefreshScheduled] = useState<number>(0);
|
||||
const [formNoteRefreshScheduled, setFormNoteRefreshScheduled] = useState<number>(0);
|
||||
|
||||
async function initNoteState(n: any) {
|
||||
let originalCss = '';
|
||||
@@ -114,7 +114,7 @@ export default function useFormNote(dependencies: HookDependencies) {
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (formNoteRefeshScheduled <= 0) return () => {};
|
||||
if (formNoteRefreshScheduled <= 0) return () => {};
|
||||
|
||||
reg.logger().info('Sync has finished and note has never been changed - reloading it');
|
||||
|
||||
@@ -141,13 +141,13 @@ export default function useFormNote(dependencies: HookDependencies) {
|
||||
return () => {
|
||||
cancelled = true;
|
||||
};
|
||||
}, [formNoteRefeshScheduled, noteId]);
|
||||
}, [formNoteRefreshScheduled, noteId]);
|
||||
|
||||
const refreshFormNote = useCallback(() => {
|
||||
// Increase the counter to cancel any ongoing refresh attempts
|
||||
// and start a new one.
|
||||
setFormNoteRefreshScheduled(formNoteRefeshScheduled + 1);
|
||||
}, [formNoteRefeshScheduled]);
|
||||
setFormNoteRefreshScheduled(formNoteRefreshScheduled + 1);
|
||||
}, [formNoteRefreshScheduled]);
|
||||
|
||||
useEffect(() => {
|
||||
// Check that synchronisation has just finished - and
|
||||
|
||||
Reference in New Issue
Block a user