Issues with uploading SVG files in MX8 Beta 3

0
Currently uploading SVG files using the image uploader ist not working. OOTB, selecting an SVG file results in the error message "The file 'axis-y-arrow.svg' is not an image." Specifying the allowed file extensions to "svg" only crashes the app Also, when allowed file extensions have been set explicitly, the ile chooser should prevent selecting files of other types.
asked
1 answers
0

we had issues with beta2 and decided to upload all svg’s through the css.

    .login-logo{
      width: 64px;
      height: 64px;
      background: url(../../web/sass/app/_projectspecific/img/logo.svg);
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
    }

 

answered