🔧 Fix security warning (#12309)
This commit is contained in:
parent
71c3483f55
commit
243ab45111
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ module.exports = {
|
|||
|
||||
const resources = window.performance
|
||||
.getEntriesByType('resource')
|
||||
.filter(({ name }) => /^(http|ftp):?/gi.test(name || ''))
|
||||
.filter(({ name }) => /^(http|ftp):/gi.test(name || ''))
|
||||
.map(({ name }) => `- ${name}`)
|
||||
.join('\n')
|
||||
|
||||
|
|
Loading…
Reference in a new issue