mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-15 00:12:17 +00:00
fix(lint): loop no likey ++
This commit is contained in:
parent
e39b3bdd35
commit
83f5c92ff1
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ export default function markdown (el, { value, oldValue }) {
|
|||
|
||||
const allLinks = el.getElementsByTagName('a');
|
||||
|
||||
for (let i = 0; i < allLinks.length; i++) {
|
||||
for (let i = 0; i < allLinks.length; i += 1) {
|
||||
const link = allLinks[i];
|
||||
|
||||
// todo middleclick or ctrl+click to open it in a new tab
|
||||
|
|
|
|||
Loading…
Reference in a new issue