Prevent shadowing

This commit is contained in:
Tobias Fella
2026-02-06 14:17:20 +01:00
parent c590cb76a0
commit 9887665560
5 changed files with 11 additions and 23 deletions

View File

@@ -80,16 +80,11 @@ FormCard.FormCardPage {
}
}
delegate: ruleDelegate
Component {
id: ruleDelegate
NotificationRuleItem {
onDeleteRule: {
root.pushRuleModel.removeKeyword(id);
}
onNotificatonActionChanged: action => root.pushRuleModel.setPushRuleAction(id, action)
delegate: NotificationRuleItem {
onDeleteRule: {
root.pushRuleModel.removeKeyword(id);
}
onNotificatonActionChanged: action => root.pushRuleModel.setPushRuleAction(id, action)
}
}
FormCard.AbstractFormDelegate {