Skip to content

Commit

Permalink
fix :
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHarim committed Jul 17, 2024
1 parent 2cf2f2d commit 0e13231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/static/js/shortener/access_shortcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $(document).ready(function () {
let tableBody = $('#shortcodeTableBody');
data.data.forEach(function (item) {
let row = $('<tr></tr>');
row.append(`<td><a href="/history/${item.shortcode}">"https://readys.link/"+ ${item.shortcode}</a></td>`);
row.append(`<td><a href="/history/${item.shortcode}"> ${item.shortcode}</a></td>`);
row.append(`<td>${item.view}</td>`);
tableBody.append(row);
});
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/url-shortener-security

0 comments on commit 0e13231

Please sign in to comment.