File tree 1 file changed +11
-10
lines changed
packages/project-editor/flow
1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -433,9 +433,9 @@ export const UserPropertyValuesProperty = observer(
433
433
. values ;
434
434
435
435
return this . properties . map ( propertyInfo => (
436
- < tr
436
+ < div
437
437
key = { propertyInfo . name }
438
- className = { classNames ( {
438
+ className = { classNames ( "EezStudio_PropertyGrid_Property" , {
439
439
inError : isPropertyInError (
440
440
userPropertyValues ,
441
441
propertyInfo . name
@@ -446,12 +446,13 @@ export const UserPropertyValuesProperty = observer(
446
446
)
447
447
} ) }
448
448
>
449
- < td >
450
- < span title = { propertyInfo . expressionType } >
451
- { propertyInfo . displayName as string } { " " }
452
- </ span >
453
- </ td >
454
- < td style = { { width : "100%" } } >
449
+ < div
450
+ className = "property-name"
451
+ title = { propertyInfo . expressionType }
452
+ >
453
+ { propertyInfo . displayName as string }
454
+ </ div >
455
+ < div style = { { width : "100%" } } >
455
456
< ProjectEditor . Property
456
457
key = { propertyInfo . name }
457
458
propertyInfo = { propertyInfo }
@@ -467,8 +468,8 @@ export const UserPropertyValuesProperty = observer(
467
468
} }
468
469
readOnly = { false }
469
470
/>
470
- </ td >
471
- </ tr >
471
+ </ div >
472
+ </ div >
472
473
) ) ;
473
474
}
474
475
}
You can’t perform that action at this time.
0 commit comments