Skip to content

Commit

Permalink
hide Custom Config attribute in UI (#20449)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmann authored Sep 16, 2024
1 parent 64f6e2e commit e3d2042
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class IndexSetTemplateService {
EntityAttribute.builder().id(TITLE_FIELD_NAME).title("Template Name").sortable(true).searchable(true).build(),
EntityAttribute.builder().id(DESCRIPTION_FIELD_NAME).title("Template Description").sortable(false).build(),
EntityAttribute.builder().id(BUILT_IN_FIELD_NAME).type(SearchQueryField.Type.BOOLEAN).title("Is Built-in").sortable(false).searchable(true).build(),
EntityAttribute.builder().id(INDEX_SET_CONFIG_FIELD_NAME).title("Custom Config").sortable(false).build()
EntityAttribute.builder().id(INDEX_SET_CONFIG_FIELD_NAME).title("Custom Config").hidden(true).sortable(false).build()
);

private static final EntityDefaults DEFAULTS = EntityDefaults.builder()
Expand Down

0 comments on commit e3d2042

Please sign in to comment.