Skip to content

Commit

Permalink
problem: can't see all the sidebar content
Browse files Browse the repository at this point in the history
  • Loading branch information
gsovereignty committed Apr 30, 2024
1 parent 2731f74 commit 5ead6e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/components/RenderNoteContent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@
formattedInput = formattedInput.replace(ytRegex, (url) => {
let ytID = extractYouTubeVideoID(url);
if (ytID) {
return `<iframe id="ytplayer" width="auto" height="300"
src="https://www.youtube.com/embed/${ytID}?autoplay=0"
frameborder="0"></iframe>`;
return `<iframe id="ytplayer" width="auto" height="300" src="https://www.youtube.com/embed/${ytID}?autoplay=0" frameborder="0"></iframe>`;
}
return '<br /><p>FAILED TO GET YT VIDEO</p><br />';
});
Expand Down
3 changes: 3 additions & 0 deletions src/lib/views/messages/Messages.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,13 @@
>
<br />
<h3>Your Keyword Ranks</h3>
<div class="overflow-y-scroll max-h-48">
{#each [...$FrontendDataStore.keywords].sort(([sa, a], [sb, b]) => {
return b - a;
}) as [word, count]}{word}: {count} <br />{/each}
</div>
<div>
<br />
<h3>TODO</h3>
<ul>
<li>Simple lndhub & cashu interface</li>
Expand Down

0 comments on commit 5ead6e8

Please sign in to comment.