I have a component with this styling: [ngStyle]="{background: 'url(http://somedomain/api/'+event.EventID+'/otherUrlItems/image) no-repeat center center'}"
The components have on the server and the first one is added as background image. How should I add a default background image for those components which don't have any image associated?
UPDATE: This worked for me:
[ngStyle]="{'background': 'url(http://somedomain/api/'+event.EventID+'/otherUrlItems/image) no-repeat center center, url(https://placeimg.com/640/480/any) no-repeat center center'}"