One more small change to the backend URL

This commit is contained in:
Donavon McDowell 2024-12-18 14:58:22 -07:00
parent 80b951e216
commit 70254cbf2a

View File

@ -107,11 +107,11 @@
{#if dropMenu}
<div class="absolute right-0 mt-2 bg-white shadow-lg rounded-md z-50 text-nowrap">
<button
class="block w-full text-left px-8 py-2 hover:bg-gray-100 text-gray-700" on:click={() => { visibility = 'Public'; dropMenu = false;}}>
class="block w-full text-left px-8 py-2 hover:bg-gray-100 text-gray-700" on:click={() => { visibility = 'public'; dropMenu = false;}}>
Public
</button>
<button
class="block w-full text-left px-8 py-2 hover:bg-gray-100 text-gray-700" on:click={() => { visibility = 'Private'; dropMenu = false;}}>
class="block w-full text-left px-8 py-2 hover:bg-gray-100 text-gray-700" on:click={() => { visibility = 'private'; dropMenu = false;}}>
Private
</button>
</div>