I have the following code that shows the user avatar:
<div class="dashboard_image" style="background-image:url({{(user.avatar!=null)?user.avatar:'/img/general_user.svg'}})" style="width:200px;height:200px"></div>
If user do not have any image, user.avatar comes null.
In Chrome works fine but not in IE 11. What's wrong?