mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 03:48:35 +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;
|
||||
}
|
||||
</style>
|
||||
<% if (invresults.length < 1) { %>
|
||||
<% if (invresults?.length < 1) { %>
|
||||
<style>
|
||||
#filters {
|
||||
display:none
|
||||
|
@ -990,7 +990,7 @@ font-weight: 1000;">dont.</h1></a>
|
|||
</div>
|
||||
<% } %>
|
||||
|
||||
<% invresults.forEach (x => { %>
|
||||
<% invresults?.forEach (x => { %>
|
||||
<div class="video-list">
|
||||
<div class="video">
|
||||
<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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue