Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAProton committed Feb 10, 2022
1 parent 184a282 commit 21f34e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adminpanel/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ const request = {
} else {
objMod.link = `<a href="${objMod.link}">${objMod.link}</a>`;
}
if (objMod.destination.length > 25) {
objMod.link = `<span title="${objMod.destination}">${objMod.destination.substring(0, 25)}\u2026</a>`;
if (objMod.destination.length > 35) {
objMod.destination = `<span title="${objMod.destination}">${objMod.destination.substring(0, 35)}\u2026</a>`;
}
dataMod.push(objMod);
});
Expand Down

0 comments on commit 21f34e1

Please sign in to comment.