Added MultilineTextEntryView
This commit is contained in:
@@ -157,7 +157,7 @@ public record ItemConfiguration
|
||||
{
|
||||
Entries = new List<ItemEntryConfiguration>
|
||||
{
|
||||
new NumberEntryConfiguration
|
||||
new MultilineTextEntryConfiguration
|
||||
{
|
||||
Label = "Notes"
|
||||
}
|
||||
@@ -170,19 +170,24 @@ public record ItemConfiguration
|
||||
{
|
||||
Sections = new List<ItemSectionConfiguration>
|
||||
{
|
||||
new()
|
||||
new ()
|
||||
{
|
||||
Entries = new List<ItemEntryConfiguration>
|
||||
{
|
||||
new TextEntryConfiguration
|
||||
{
|
||||
Label = "Description",
|
||||
},
|
||||
new AttachmentEntryConfiguration
|
||||
{
|
||||
Label = "Attachments"
|
||||
Label = "Attachments",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
public static ItemConfiguration DrivingLicence => new()
|
||||
{
|
||||
Sections = new List<ItemSectionConfiguration>
|
||||
|
||||
Reference in New Issue
Block a user