@@ -225,31 +225,31 @@ const onSubmit = handleSubmit((vals) => {
225225 <form @submit =" onSubmit" class =" flex w-full flex-col items-start gap-4" >
226226 <FormField name =" meta.appName" v-slot =" { componentField }" validate-on-input >
227227 <FormItem class =" w-full" >
228- <FormLabel for =" meta.appName" class =" text-right " >App Name</FormLabel >
228+ <FormLabel for =" meta.appName" class =" text-left " >App Name</FormLabel >
229229 <Input id =" meta.appName" class =" col-span-3" v-bind =" componentField" />
230230 <FormMessage />
231231 </FormItem >
232232 </FormField >
233233
234234 <FormField name =" meta.appUrl" v-slot =" { componentField }" validate-on-input >
235235 <FormItem class =" w-full" >
236- <FormLabel for =" meta.appUrl" class =" text-right " >App URL</FormLabel >
236+ <FormLabel for =" meta.appUrl" class =" text-left " >App URL</FormLabel >
237237 <Input id =" meta.appUrl" class =" col-span-3" v-bind =" componentField" />
238238 <FormMessage />
239239 </FormItem >
240240 </FormField >
241241
242242 <FormField name =" meta.senderName" v-slot =" { componentField }" validate-on-input >
243243 <FormItem class =" w-full" >
244- <FormLabel for =" meta.senderName" class =" text-right " >Sender Name</FormLabel >
244+ <FormLabel for =" meta.senderName" class =" text-left " >Sender Name</FormLabel >
245245 <Input id =" meta.senderName" class =" col-span-3" v-bind =" componentField" />
246246 <FormMessage />
247247 </FormItem >
248248 </FormField >
249249
250250 <FormField name =" meta.senderAddress" v-slot =" { componentField }" validate-on-input >
251251 <FormItem class =" w-full" >
252- <FormLabel for =" meta.senderAddress" class =" text-right " >Sender Address</FormLabel >
252+ <FormLabel for =" meta.senderAddress" class =" text-left " >Sender Address</FormLabel >
253253 <Input id =" meta.senderAddress" type =" email" class =" col-span-3" v-bind =" componentField" />
254254 <FormMessage />
255255 </FormItem >
@@ -262,15 +262,15 @@ const onSubmit = handleSubmit((vals) => {
262262 <CardContent class="flex flex-col gap-4">
263263 <FormField name="maxDays" v-slot="{ componentField }" validate-on-input>
264264 <FormItem class="w-full">
265- <FormLabel for="maxDays" class="text-right ">Max Days</FormLabel>
265+ <FormLabel for="maxDays" class="text-left ">Max Days</FormLabel>
266266 <Input id="maxDays" type="number" class="col-span-3" v-bind="componentField" />
267267 <FormMessage />
268268 </FormItem>
269269 </FormField>
270270
271271 <FormField name="logLevel" v-slot="{ componentField }" validate-on-input>
272272 <FormItem>
273- <FormLabel for="logLevel" class="text-right ">Log Level</FormLabel>
273+ <FormLabel for="logLevel" class="text-left ">Log Level</FormLabel>
274274 <FormControl>
275275 <Select id="logLevel" class="col-span-3" v-bind="componentField">
276276 <SelectTrigger class="font-medium">
@@ -328,7 +328,7 @@ const onSubmit = handleSubmit((vals) => {
328328
329329 <FormField name =" smtp.host" v-slot =" { componentField }" validate-on-input >
330330 <FormItem class =" w-full" >
331- <FormLabel for =" smtp.host" class =" text-right " >Host</FormLabel >
331+ <FormLabel for =" smtp.host" class =" text-left " >Host</FormLabel >
332332 <Input id =" smtp.host" class =" col-span-3" v-bind =" componentField" />
333333 <FormMessage />
334334 <FormDescription >SMTP server hostname (e.g., smtp.gmail.com)</FormDescription >
@@ -337,7 +337,7 @@ const onSubmit = handleSubmit((vals) => {
337337
338338 <FormField name =" smtp.port" v-slot =" { componentField }" validate-on-input >
339339 <FormItem class =" w-full" >
340- <FormLabel for =" smtp.port" class =" text-right " >Port</FormLabel >
340+ <FormLabel for =" smtp.port" class =" text-left " >Port</FormLabel >
341341 <Input id =" smtp.port" type =" number" class =" col-span-3" v-bind =" componentField" />
342342 <FormMessage />
343343 <FormDescription >Common ports: 25, 465 (SSL), 587 (TLS)</FormDescription >
@@ -346,23 +346,23 @@ const onSubmit = handleSubmit((vals) => {
346346
347347 <FormField name =" smtp.username" v-slot =" { componentField }" validate-on-input >
348348 <FormItem class =" w-full" >
349- <FormLabel for =" smtp.username" class =" text-right " >Username</FormLabel >
349+ <FormLabel for =" smtp.username" class =" text-left " >Username</FormLabel >
350350 <Input id =" smtp.username" class =" col-span-3" v-bind =" componentField" />
351351 <FormMessage />
352352 </FormItem >
353353 </FormField >
354354
355355 <FormField name =" smtp.password" v-slot =" { componentField }" validate-on-input >
356356 <FormItem class =" w-full" >
357- <FormLabel for =" smtp.password" class =" text-right " >Password</FormLabel >
357+ <FormLabel for =" smtp.password" class =" text-left " >Password</FormLabel >
358358 <Input id =" smtp.password" type =" password" class =" col-span-3" v-bind =" componentField" />
359359 <FormMessage />
360360 </FormItem >
361361 </FormField >
362362
363363 <FormField name =" smtp.authMethod" v-slot =" { componentField }" validate-on-input >
364364 <FormItem >
365- <FormLabel for =" smtp.authMethod" class =" text-right " > Authentication Method </FormLabel >
365+ <FormLabel for =" smtp.authMethod" class =" text-left " > Authentication Method </FormLabel >
366366 <Select id =" smtp.authMethod" class =" col-span-3" v-bind =" componentField" >
367367 <SelectTrigger class =" font-medium" >
368368 <SelectValue placeholder =" Select authentication method" />
@@ -392,7 +392,7 @@ const onSubmit = handleSubmit((vals) => {
392392
393393 <FormField name =" smtp.localName" v-slot =" { componentField }" validate-on-input >
394394 <FormItem class =" w-full" >
395- <FormLabel for =" smtp.localName" class =" text-right " >HELO domain</FormLabel >
395+ <FormLabel for =" smtp.localName" class =" text-left " >HELO domain</FormLabel >
396396 <Input id =" smtp.localName" class =" col-span-3" v-bind =" componentField" />
397397 <FormDescription >Optional. Leave empty to use default hostname.</FormDescription >
398398 <FormMessage />
@@ -408,15 +408,15 @@ const onSubmit = handleSubmit((vals) => {
408408 <CardContent class="flex flex-col gap-4">
409409 <FormField name="cron" v-slot="{ componentField }" validate-on-input>
410410 <FormItem class="w-full">
411- <FormLabel for="cron" class="text-right ">Cron Expression</FormLabel>
411+ <FormLabel for="cron" class="text-left ">Cron Expression</FormLabel>
412412 <Input id="cron" class="col-span-3" v-bind="componentField" />
413413 <FormMessage />
414414 </FormItem>
415415 </FormField>
416416
417417 <FormField name="cronMaxKeep" v-slot="{ componentField }" validate-on-input>
418418 <FormItem class="w-full">
419- <FormLabel for="cronMaxKeep" class="text-right ">Max Keep</FormLabel>
419+ <FormLabel for="cronMaxKeep" class="text-left ">Max Keep</FormLabel>
420420 <Input id="cronMaxKeep" type="number" class="col-span-3" v-bind="componentField" />
421421 <FormMessage />
422422 </FormItem>
0 commit comments