forked from EVOgeek/Vmeda.Online
		
	MOBILE-4653 notifications: Fix opening notification action
The siteId parameter is mandatory for actions, but in notiifcations it wasn't supplied. This worked fine before, but after the refactor done in MOBILE-4028 it no longer worked
This commit is contained in:
		
							parent
							
								
									99e1223616
								
							
						
					
					
						commit
						bd41c5d064
					
				@ -49,7 +49,7 @@
 | 
			
		||||
 | 
			
		||||
        <div collapsible-footer appearOnBottom *ngIf="loaded && actions && actions.length > 0" slot="fixed">
 | 
			
		||||
            <div class="list-item-limited-width adaptable-buttons-row">
 | 
			
		||||
                <ion-button expand="block" (click)="action.action()" *ngFor="let action of actions">
 | 
			
		||||
                <ion-button expand="block" (click)="action.action(action.sites[0])" *ngFor="let action of actions">
 | 
			
		||||
                    <ion-icon slot="start" name="{{action.icon}}" aria-hidden="true" />
 | 
			
		||||
                    {{ action.message | translate }}
 | 
			
		||||
                </ion-button>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user