Gestito notificationData nelle notifiche push
This commit is contained in:
@@ -145,13 +145,17 @@ function initRow(row) {
|
||||
}
|
||||
|
||||
function removeRow(row) {
|
||||
//collapseAndRemove(row);
|
||||
dotnetHelper.invokeMethodAsync('Delete', row.id);
|
||||
const id = row.id;
|
||||
|
||||
collapseAndRemove(row);
|
||||
dotnetHelper.invokeMethodAsync('Delete', id);
|
||||
}
|
||||
|
||||
function markAsRead(row) {
|
||||
//collapseAndRemove(row);
|
||||
dotnetHelper.invokeMethodAsync('MarkAsRead', row.id);
|
||||
const id = row.id;
|
||||
|
||||
collapseAndRemove(row);
|
||||
dotnetHelper.invokeMethodAsync('MarkAsRead', id);
|
||||
}
|
||||
|
||||
function collapseAndRemove(row) {
|
||||
|
||||
Reference in New Issue
Block a user