Skip to content

Commit 197ee31

Browse files
committed
Flip link title and external icon order
1 parent 64d85dd commit 197ee31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/js/sidebar/sidebar-list.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export function initialize () {
8080

8181
items.push(el('li', {}, [
8282
el('a', {href, translate}, [
83-
node.url ? el('i', {class: 'external-link ri-external-link-line'}) : null,
84-
node.nested_title || node.title
83+
node.nested_title || node.title,
84+
node.url ? el('i', {class: 'external-link ri-external-link-line'}) : null
8585
].filter(Boolean)),
8686
...childList(`node-${node.id}-headers`,
8787
hasHeaders

0 commit comments

Comments
 (0)