The export feed icon is missing because the render array contains both a #theme and #type key:
$this->view->feedIcons[] = [
'#theme' => 'export_icon',
'#url' => $url,
'#type' => mb_strtoupper($type),
// ...
];
This can be fixed by renaming the "type" variable to "format".
Patch forthcoming.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | views_data_export-feed_icons_missing-3047109-2.patch | 2.02 KB | matthijs |
Comments
Comment #2
matthijsComment #3
ducktape commentedComment #4
jhedstromThanks!