Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add byte data to metadata summary page for its children thumbnails #8608

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public class EsSearchManager implements ISearchManager {
FIELDLIST_RELATED_SCRIPTED = ImmutableMap.<String, String>builder()
// Elasticsearch scripted field to get the first overview url. Scripted fields must return single values.
.put("overview", "return params['_source'].overview == null ? [] : params['_source'].overview.stream().map(f -> f.url).findFirst().orElse('');")
.put("overview_data", "return params['_source'].overview == null ? [] : params['_source'].overview.stream().map(f -> f.data).findFirst().orElse('');")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1075,6 +1075,8 @@
if (md.overview && md.overview.length > 0) {
return md.overview[0].url;
// Related records contain the first overview in the properties.overview property
} else if (md.properties && md.properties.overview_data) {
return md.properties.overview_data;
} else if (md.properties && md.properties.overview) {
return md.properties.overview;
}
Expand Down
Loading