Raum-Properties: SIA-Dropdown-Labels kompakter (GF Geschossflaeche statt GF — Geschossflaeche (gross …))
This commit is contained in:
+4
-4
@@ -195,8 +195,8 @@ const RAUM_SIA_KINDS = [
|
|||||||
{ code: 'nnf', label: 'NNF', color: '#e8c498', hint: 'Nebennutzfläche' },
|
{ code: 'nnf', label: 'NNF', color: '#e8c498', hint: 'Nebennutzfläche' },
|
||||||
{ code: 'vf', label: 'VF', color: '#e8d878', hint: 'Verkehrsfläche' },
|
{ code: 'vf', label: 'VF', color: '#e8d878', hint: 'Verkehrsfläche' },
|
||||||
{ code: 'ff', label: 'FF', color: '#a8c8e0', hint: 'Funktionsfläche' },
|
{ code: 'ff', label: 'FF', color: '#a8c8e0', hint: 'Funktionsfläche' },
|
||||||
{ code: 'gf', label: 'GF', color: '#d0d0d0', hint: 'Geschossfläche (gross — umfasst das ganze Geschoss)' },
|
{ code: 'gf', label: 'GF', color: '#d0d0d0', hint: 'Geschossfläche' },
|
||||||
{ code: 'agf', label: 'AGF', color: '#c0d8c0', hint: 'Aussengeschossfläche (Balkone, Terrassen)' },
|
{ code: 'agf', label: 'AGF', color: '#c0d8c0', hint: 'Aussengeschossfläche' },
|
||||||
]
|
]
|
||||||
|
|
||||||
const PROFIL_META = {
|
const PROFIL_META = {
|
||||||
@@ -1059,9 +1059,9 @@ function RaumProperties({ raum, geschosse, onUpdate, onDelete, hatchPatterns, fo
|
|||||||
title="SIA 416 Flaechenklassifikation"
|
title="SIA 416 Flaechenklassifikation"
|
||||||
style={{ flex: 1, fontSize: 11 }}>
|
style={{ flex: 1, fontSize: 11 }}>
|
||||||
{RAUM_SIA_KINDS.map(s => (
|
{RAUM_SIA_KINDS.map(s => (
|
||||||
<option key={s.code} value={s.code}>
|
<option key={s.code} value={s.code} title={s.hint}>
|
||||||
{s.code === '' ? '—'
|
{s.code === '' ? '—'
|
||||||
: `${s.label} — ${s.hint}`}
|
: `${s.label} ${s.hint}`}
|
||||||
</option>
|
</option>
|
||||||
))}
|
))}
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Reference in New Issue
Block a user