Capacitor v4 share plugin dialogTitle not showing

Hi,

I’m using “@capacitor/share”: “^4.1.1” in my app and have the following code in my vue.js file:

import { Share } from '@capacitor/share';

await Share.share({
  title: 'See cool stuff',
  text: 'Really awesome thing you need to see right meow',
  url: 'http://ionicframework.com/',
  dialogTitle: 'Share with buddies',
});

However, the dialogTitle value is not showing on the dialog, but the text value is showing instead. See screenshot. Is this a bug or do I need to extend the code and do something? And I’d also like to change the default A icon.