javascript - chrome notification list type notification won't display primary message -


i don't know why primary message in chrome notifications of type:"list" won't displayed.

according official documents, message still required in options send create notifications doesn't show message in notification. have options object here-

 options={   type: "list",   title: "test",   message: "this message doesn't displayed",   iconurl: "icon128.png",    items: [{ title: "but", message: "this gets displayed."},           { title: "and", message: "this gets displayed."},           { title: "and this", message: "also gets displayed."}] }; 

am missing something? there workaround? didn't share manifest because notification working fine if change type:"list" type:"basic" , replace items contextmessage. want display message and list.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -