Merge pull request #78 from shivan2418/add_tooltip_for_premade_prompts

show  contents of prompt in premade prompts list
This commit is contained in:
Niek van der Maas 2023-03-27 15:52:52 +02:00 committed by GitHub
commit 4547ca6f6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
<div class="dropdown-menu" id="dropdown-menu" role="menu">
<div class="dropdown-content">
{#each prompts as prompt}
<a class="dropdown-item" href={'#'} on:click|preventDefault={() => inputPrompt(prompt.prompt)}>
<a title={prompt.prompt} class="dropdown-item" href={'#'} on:click|preventDefault={() => inputPrompt(prompt.prompt)}>
{prompt.act}
</a>
{/each}