05.09.2022, 10:26
Read-only disables transform modifications. Add this to Custom JS to fix this issue:
Code:
$(function() {
$('.spin-animation.item-read-only')
.removeClass('item-read-only')
.css('pointer-events', 'none');
});