[Bugfix] Fix the resume keyword list

This commit is contained in:
Gergely Polonkai 2022-06-16 18:18:13 +02:00
parent 760a46ed5b
commit 4da1081c40
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@
var keyword_tags = document.querySelectorAll('.keyword');
keyword_tags.forEach(function(tag, idx) {
var kw = (tag.title || tag.innerHTML).trim().replace(/\n */, ' ');
var kw = (tag.title || tag.textContent).trim().replace(/\n */, ' ');
var firstLetter = kw.charAt(0);
var remainder = kw.slice(1);