Reapply style change after merge

This commit is contained in:
galela 2025-05-12 14:34:57 +02:00
parent 98ec5f072c
commit 9852b8411a

View File

@ -9,7 +9,6 @@ import {
import { FieldDetails } from './FieldDetails'; import { FieldDetails } from './FieldDetails';
import { import {
InnerPropertiesWrap, InnerPropertiesWrap,
PropertyBullet,
PropertyCellWithInner, PropertyCellWithInner,
PropertyDetailsCell, PropertyDetailsCell,
PropertyNameCell, PropertyNameCell,
@ -74,7 +73,6 @@ export class Field extends React.Component<FieldProps> {
kind={kind} kind={kind}
title={name} title={name}
> >
<PropertyBullet />
<button <button
onClick={this.toggle} onClick={this.toggle}
onKeyPress={this.handleKeyPress} onKeyPress={this.handleKeyPress}
@ -91,7 +89,6 @@ export class Field extends React.Component<FieldProps> {
</ClickablePropertyNameCell> </ClickablePropertyNameCell>
) : ( ) : (
<PropertyNameCell className={deprecated ? 'deprecated' : undefined} kind={kind} title={name}> <PropertyNameCell className={deprecated ? 'deprecated' : undefined} kind={kind} title={name}>
<PropertyBullet />
{!hidePropertiesPrefix && {!hidePropertiesPrefix &&
fieldParentsName.map( fieldParentsName.map(
name => name + '.\u200B', // zero-width space, a special character is used for correct line breaking name => name + '.\u200B', // zero-width space, a special character is used for correct line breaking