Skip to content

Commit 8be7b1f

Browse files
javier-godoypaodb
authored andcommitted
fix: fix typo in code-viewer __compare
1 parent 128246a commit 8be7b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/META-INF/resources/frontend/code-viewer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ pre[class*="language-"] {
354354
if (ai>bi) return +1;
355355
}
356356
if (aa.length<bb.length) return -1;
357-
if (aa.length<bb.length) return +1;
357+
if (aa.length>bb.length) return +1;
358358
return 0;
359359
}
360360

0 commit comments

Comments
 (0)