keyboarddabbler
keyboarddabbler
Explore posts from servers
NNuxt
Created by keyboarddabbler on 1/4/2025 in #❓・help
Nuxt UI loading-auto prop to show the loading icon automatically while the @click promise is pending
<UForm
ref="form"
:state="state"
:schema="schema"
class="w-full max-w-[960px] mx-auto"
@submit="onSubmit"
>
<div class="grid grid-cols-1 gap-4">

<UFormField
label="Filter Color"
name="filters"
>
<USelect
v-model="state.filters"
size="xl"
:items="filters"
class="w-full"
/>
</UFormField>

<div class="flex gap-2 mt-8">
<UButton
v-if="!generatedImage"
loading-auto
type="submit"
>
Generate
</UButton>
<UButton
v-if="generatedImage"
@click="downloadImage"
>
Download
</UButton>
<UButton
variant="outline"
@click="() => {
form?.clear();
clearFormAndCanvas();
}"
>
Clear
</UButton>
</div>
</div>

<canvas
ref="canvas"
class="border mt-10 max-w-[960px] max-h-[540px] w-full h-auto"
/>
</UForm>
<UForm
ref="form"
:state="state"
:schema="schema"
class="w-full max-w-[960px] mx-auto"
@submit="onSubmit"
>
<div class="grid grid-cols-1 gap-4">

<UFormField
label="Filter Color"
name="filters"
>
<USelect
v-model="state.filters"
size="xl"
:items="filters"
class="w-full"
/>
</UFormField>

<div class="flex gap-2 mt-8">
<UButton
v-if="!generatedImage"
loading-auto
type="submit"
>
Generate
</UButton>
<UButton
v-if="generatedImage"
@click="downloadImage"
>
Download
</UButton>
<UButton
variant="outline"
@click="() => {
form?.clear();
clearFormAndCanvas();
}"
>
Clear
</UButton>
</div>
</div>

<canvas
ref="canvas"
class="border mt-10 max-w-[960px] max-h-[540px] w-full h-auto"
/>
</UForm>
6 replies
IImmich
Created by keyboarddabbler on 11/21/2023 in #help-desk-support
Bulk import assets
I will take a read through the link and see if I can get it working
6 replies
IImmich
Created by keyboarddabbler on 8/22/2023 in #help-desk-support
how to define network type? (resolved)
Awesome, thankyou for taking the time to share your compose file. This looks like what I am trying to achieve. I will try the changes this evening and report back. Update: confirmed working
6 replies
IImmich
Created by keyboarddabbler on 8/22/2023 in #help-desk-support
how to define network type? (resolved)
By default unRAID, the VMs and Docker containers all run within the same network as you suggest, however. unRAID allows you to isolate VMs and Docker containers even further to run on their own network environment completely separated from the unRAID server. As in the image I currently have gitea running on the vlan tag 80.
6 replies