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