forms setting properties not rendering properly
# help-with-umbraco
r
Hi together, i am using Umbraco 14 with the Forms plugin also in v 14.2.2. I want to create a custom field type but the settings description and name are not rendered correctly in the backoffice. I did not find an easy fix for this. Does someone now how the name and description can be rendered correctly? A Picture of the result in the backoffice is applied. also this is how i define the two settings fields.
Copy code
[Setting("Link Text",
        Description = "The text displayed for the link.",
        DisplayOrder = 10)]
    public virtual string? LinkText { get; set; }

    [Setting("Link URL",
        Description = "the url of the link.",
        Alias = "linkUrl",
        DisplayOrder = 20)]
    public virtual string? LinkUrl { get; set; }
Thanks for any help. https://cdn.discordapp.com/attachments/1314589082860392519/1314589083460435968/grafik.png?ex=675451fd&is=6753007d&hm=ba800e5313b8f0aaa4b7963dce00d18d4691151787b019a3d00a9ccfa4249887&
anyone with the same problem? or knowing how to solve it?
2 Views