mirror of
https://github.com/sys-nyx/red-arch.git
synced 2025-05-06 08:45:31 -04:00
fixed var name error
This commit is contained in:
parent
7083671bb5
commit
03175dd307
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
function displaySearch(results) {
|
function displaySearch(results) {
|
||||||
let links = document.querySelector('.links')
|
let links = document.querySelector('.links')
|
||||||
links.innerHTML = ''
|
links.innerHTML = ''
|
||||||
results.forEach(element => {
|
results.forEach(r => {
|
||||||
|
|
||||||
d = document.createElement('div')
|
d = document.createElement('div')
|
||||||
d.classList.add('search-result')
|
d.classList.add('search-result')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue