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

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