3D-Stats Höhe fix, Dateilimits zu Benutzer-Tab, Gesamtlimit statt Anzahl

This commit is contained in:
2026-05-28 12:34:12 +02:00
parent 903b6d204f
commit ab752d7c93
3 changed files with 26 additions and 22 deletions

View File

@@ -686,7 +686,7 @@ function BestellStats() {
<div style={{...S.card,marginBottom:10}}>
<button onClick={toggle} style={{width:'100%',background:'transparent',border:'none',
display:'flex',justifyContent:'space-between',alignItems:'center',cursor:'pointer',padding:0}}>
<div style={S.head}>3D-DRUCK STATISTIK</div>
<div style={{...S.head, marginBottom:0}}>3D-DRUCK STATISTIK</div>
<span style={{color:'rgba(255,255,255,0.3)',fontSize:11,display:'inline-block',
transform:open?'rotate(90deg)':'rotate(0)',transition:'transform 0.2s'}}></span>
</button>
@@ -1457,7 +1457,12 @@ function AdminPanel({ toast, mobile, user }) {
)}
{section === 'benutzer' && user?.role==='admin' && (
<div><UserManagement toast={toast}/></div>
<div>
<UserManagement toast={toast}/>
<Sec title="DATEI-MANAGER LIMITS">
<DateiSettings toast={toast}/>
</Sec>
</div>
)}
{section === 'dashboard' && (
@@ -1468,9 +1473,6 @@ function AdminPanel({ toast, mobile, user }) {
<Sec title="KALENDER (iCal)">
<CalendarSettings toast={toast}/>
</Sec>
{user?.role==='admin' && <Sec title="DATEI-MANAGER LIMITS">
<DateiSettings toast={toast}/>
</Sec>}
</div>
)}