From 9aa604c5a0a18a88243890c587aaeb49ef842655 Mon Sep 17 00:00:00 2001 From: Gregor Wolf Date: Fri, 12 Nov 2021 23:56:11 +0100 Subject: [PATCH] remove @UI.HiddenFilter --- fiori/app/common.cds | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fiori/app/common.cds b/fiori/app/common.cds index d100c507..bb04d29f 100644 --- a/fiori/app/common.cds +++ b/fiori/app/common.cds @@ -58,7 +58,7 @@ annotate my.Books with @(UI : {HeaderInfo : { // Books Elements // annotate my.Books with { - ID @title : '{i18n>ID}' @UI.HiddenFilter; + ID @title : '{i18n>ID}'; title @title : '{i18n>Title}'; genre @title : '{i18n>Genre}' @Common : { Text : genre.name, @@ -164,7 +164,7 @@ annotate my.Authors with @(UI : { // Authors Elements // annotate my.Authors with { - ID @title : '{i18n>ID}' @UI.HiddenFilter; + ID @title : '{i18n>ID}'; name @title : '{i18n>Name}'; dateOfBirth @title : '{i18n>DateOfBirth}'; dateOfDeath @title : '{i18n>DateOfDeath}';