build.sh fix

This commit is contained in:
2026-03-25 13:05:46 -04:00
parent ba91fce44c
commit 92dbcf2780
2 changed files with 3 additions and 1 deletions

View File

@@ -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>
)}

View File

@@ -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)}/>}
</>
);
}