How to change the appearance of the options menu?

Hello everyone, I created the components for the class and they have a strange menu display, how to fix it?

https://pu.vk.com/c849216/upload.php?act=proxy_img&url=https%3A%2F%2Fimage.prntscr.com%2Fimage%2F7yAftNmYTAeYgMAIepXNHA.png&hash=ee82aee8df38dc4cb0368629119768e1&mid=49231792

.h

 UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category = Chunk)
    UStaticMeshComponent* MeshComp;
    
    UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category = Chunk)
    UStaticMeshComponent* StatusDemonstration;

.cpp

MeshComp = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("MeshComp"));
RootComponent = MeshComp;

StatusDemonstration = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("StatusDemonstration"));
StatusDemonstration->SetupAttachment(RootComponent);
StatusDemonstration->SetRelativeLocation(FVector(0.f,100.f,0.f));

Found solution:

UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Chunk, meta = (AllowPrivateAccess = "true"))