add the prompt to the title of link.

This commit is contained in:
Emil Elgaard 2023-03-26 17:14:46 -04:00
parent 17a86d0538
commit be899ae570
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}