mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 01:38:03 +01:00
add ?.
This commit is contained in:
parent
8f5d7de44d
commit
3956897066
1 changed files with 3 additions and 3 deletions
|
@ -969,7 +969,7 @@ font-weight: 1000;">dont.</h1></a>
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<% if (invresults.length < 1) { %>
|
<% if (invresults?.length < 1) { %>
|
||||||
<style>
|
<style>
|
||||||
#filters {
|
#filters {
|
||||||
display:none
|
display:none
|
||||||
|
@ -990,7 +990,7 @@ font-weight: 1000;">dont.</h1></a>
|
||||||
</div>
|
</div>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
<% invresults.forEach (x => { %>
|
<% invresults?.forEach (x => { %>
|
||||||
<div class="video-list">
|
<div class="video-list">
|
||||||
<div class="video">
|
<div class="video">
|
||||||
<a href="/watch?v=<%= x.videoId %>"
|
<a href="/watch?v=<%= x.videoId %>"
|
||||||
|
@ -1032,7 +1032,7 @@ font-weight: 1000;" href="/watch?v=<%= x.videoId %>" class="title max-lines-2"><
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<% if (invresults.length >= 1) { %>
|
<% if (invresults?.length >= 1) { %>
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue