-
Notifications
You must be signed in to change notification settings - Fork 17k
Closed
Description
Preflight Checklist
- I have read the Contributing Guidelines for this project.
- I agree to follow the Code of Conduct that this project adheres to.
- I have searched the issue tracker for a bug report that matches the one I want to file, without success.
Electron Version
23.1.0
What operating system are you using?
macOS
Operating System Version
13.2.1
What arch are you using?
arm64 (including Apple Silicon)
Last Known Working Electron version
No response
Expected Behavior
When showing a main process Notification (i.e. not the browser Notification) and using hasReply: true and actions: [...] then the first action is missing from the list.
Example:
const notification = new Notification({
title: 'Hello 2',
subtitle: '#general',
body: 'blabla',
hasReply: true,
replyPlaceholder: 'Type your reply...',
actions: [
{ type: 'button', text: 'Action 1' },
{ type: 'button', text: 'Action 2' },
],
});
notification.show();I expect to get this notification with Reply, Action 1, and Action 2:

Actual Behavior
Testcase Gist URL
https://gist.github.com/stefansundin/bb92e0d0cf83439e176b3d970e533104
Additional Information
I tested my fiddle with electron v20.0.0 and it had the same bug.
Reactions are currently unavailable
