mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-18 05:02:14 +01:00
add missing error in create team member modal
This commit is contained in:
@@ -56,7 +56,7 @@ useFocus(clientNameInput, { initialValue: true });
|
|||||||
<template #content>
|
<template #content>
|
||||||
<div class="space-y-4">
|
<div class="space-y-4">
|
||||||
<div class="col-span-6 sm:col-span-4 flex-1">
|
<div class="col-span-6 sm:col-span-4 flex-1">
|
||||||
<InputLabel for="roles" value="Email" />
|
<InputLabel for="email" value="Email" />
|
||||||
<TextInput
|
<TextInput
|
||||||
id="email"
|
id="email"
|
||||||
name="email"
|
name="email"
|
||||||
@@ -68,6 +68,9 @@ useFocus(clientNameInput, { initialValue: true });
|
|||||||
class="mt-1 block w-full"
|
class="mt-1 block w-full"
|
||||||
required
|
required
|
||||||
autocomplete="memberName" />
|
autocomplete="memberName" />
|
||||||
|
<InputError
|
||||||
|
:message="addTeamMemberForm.errors.email"
|
||||||
|
class="mt-2" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="availableRoles.length > 0">
|
<div v-if="availableRoles.length > 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user