fix: use noreferrer for external links

Based on the existing noreferrer code in the code base.
This commit is contained in:
Donovan Glover
2024-11-27 22:29:25 -05:00
committed by nkanaev
parent 2a8b6ea935
commit 321ad7608f
2 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ var helperFunctions = {
var shortcutFunctions = {
openItemLink: function() {
if (vm.itemSelectedDetails && vm.itemSelectedDetails.link) {
window.open(vm.itemSelectedDetails.link, '_blank')
window.open(vm.itemSelectedDetails.link, '_blank', 'noopener,noreferrer')
}
},
toggleReadability: function() {