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
Post a Comment