mirror of
https://github.com/techgaun/active-forks.git
synced 2024-12-22 13:32:14 +01:00
fix for join
This commit is contained in:
parent
043841aa43
commit
8584e894d4
1 changed files with 6 additions and 1 deletions
|
@ -45,7 +45,12 @@ function showData(data) {
|
||||||
`
|
`
|
||||||
html.push(item)
|
html.push(item)
|
||||||
}
|
}
|
||||||
document.getElementById('data-body').innerHTML = `<table class="table table-striped">${thead}<tbody>${html.join()}</tbody></table>`
|
document.getElementById('data-body').innerHTML = `
|
||||||
|
<table class="table table-striped">
|
||||||
|
${thead}
|
||||||
|
<tbody>${html.join('')}</tbody>
|
||||||
|
</table>
|
||||||
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
function timeSince(date_str) {
|
function timeSince(date_str) {
|
||||||
|
|
Loading…
Reference in a new issue