build.sh fix
This commit is contained in:
@@ -100,7 +100,7 @@ export default function NewChatModal({ onClose, onCreated }) {
|
|||||||
<input
|
<input
|
||||||
className="input"
|
className="input"
|
||||||
value={name}
|
value={name}
|
||||||
onChange={e => setName(e.target.value)} autoComplete="new-password" placeholder={namePlaceholder}
|
onChange={e => setName(e.target.value)} placeholder={namePlaceholder}
|
||||||
autoComplete="new-password" autoCorrect="off" autoCapitalize="words" spellCheck={false} />
|
autoComplete="new-password" autoCorrect="off" autoCapitalize="words" spellCheck={false} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -652,6 +652,7 @@ function EventForm({ event, userGroups, eventTypes, selectedDate, onSave, onCanc
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
<div style={{width:'100%',maxWidth:1024,overflowX:'auto'}}>
|
<div style={{width:'100%',maxWidth:1024,overflowX:'auto'}}>
|
||||||
<div style={{minWidth:500}} onKeyDown={e=>{if(e.key==='Enter'&&e.target.tagName!=='TEXTAREA') e.preventDefault();}}>
|
<div style={{minWidth:500}} onKeyDown={e=>{if(e.key==='Enter'&&e.target.tagName!=='TEXTAREA') e.preventDefault();}}>
|
||||||
{/* Title */}
|
{/* Title */}
|
||||||
@@ -758,6 +759,7 @@ function EventForm({ event, userGroups, eventTypes, selectedDate, onSave, onCanc
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{showScopeModal&&<RecurringChoiceModal title="Edit recurring event" onConfirm={doSave} onCancel={()=>setShowScopeModal(false)}/>}
|
{showScopeModal&&<RecurringChoiceModal title="Edit recurring event" onConfirm={doSave} onCancel={()=>setShowScopeModal(false)}/>}
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user