Hi everyone,
I'm locally running the fiori sample from the samples repository (without making any changes) and was confused by the following behavior:
The HeaderInfo annotation in common.cds contains an entry for the title. Therefore I would expect a title to appear in the header as well. However the preview only displays the description section of the term, which in this case, is the authors name.
Is this the expected behavior, or should the title also be displayed?
Here the respective code snippet:
// Books Details
//
annotate my.Books with @(
UI: {
HeaderInfo: {
TypeName: '{i18n>Book}',
TypeNamePlural: '{i18n>Books}',
Title: {Value: title},
Description: {Value: author.name}
},
}
Thanks and regards,
Jan