The problem seems to be that svg is not supported correctly yet.
I inserted this small piece of code in my child-themes functions script and now it runs smoothly again.
//* Add svg support
function cc_mime_types($mimes) {
$mimes[‘svg’] = ‘image/svg+xml’;
return $mimes;
}
add_filter(‘upload_mimes’, ‘cc_mime_types’);