Skip to content

Commit 2834204

Browse files
committed
Merge remote-tracking branch 'origin/8.3' into 8.4
2 parents fb96d1c + e3af627 commit 2834204

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Neos.Media.Browser/Resources/Private/Templates/Asset/Index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ <h2>
264264
<f:render partial="ConstraintsHiddenFields" arguments="{constraints: constraints}" />
265265
</f:form>
266266
</div>
267-
<div id="uploader">
267+
<div id="uploader" style="overflow: hidden">
268268
<div id="filelist"></div>
269269
</div>
270270
</f:if>

Neos.Neos/Classes/Controller/Module/Management/HistoryController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function indexAction($offset = 0, $limit = 10)
5353
->controllerContext
5454
->getUriBuilder()
5555
->setCreateAbsoluteUri(true)
56-
->uriFor('Index', ['offset' => $offset + $limit], 'History', 'Neos.Neos');
56+
->uriFor('index', ['offset' => $offset + $limit]);
5757
}
5858

5959
$eventsByDate = [];

Neos.Neos/Classes/Controller/Service/NodesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function showAction($identifier, $workspaceName = 'live', array $dimensio
127127

128128
$convertedNodeProperties = $this->nodePropertyConverterService->getPropertiesArray($node);
129129
array_walk($convertedNodeProperties, function (&$value) {
130-
if (is_array($value)) {
130+
if (is_array($value) || $value instanceof \JsonSerializable) {
131131
$value = json_encode($value);
132132
}
133133
});

Neos.Neos/Resources/Private/Templates/Module/Management/History/Index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
window.addEventListener('DOMContentLoaded', (event) => {
4949
jQuery(function($) {
5050

51-
var nextPage = '{nextPage}';
51+
var nextPage = jQuery('div.loadMore').data('neos-history-nextpage');
5252
var historyContainer = $('.neos-history');
5353
$('.loadMore button').click(function() {
5454

0 commit comments

Comments
 (0)