react-native-zss-rich-text-editor
react-native-zss-rich-text-editor copied to clipboard
action.unlink not working
I am trying to use unlink functionality. I made few changes
- In const.js
unlink: 'unlink',
2.In RichTextEditor.js
unlink(url, title) { this._sendAction(actions.unlink, {url, title}); }
- In RichTextToolbar.js
case actions.unlink:
4.In WebviewMessageHandler.js
case '${actions.unlink}': zss_editor.unlink(action.data.url, action.data.title); break;
but still unlink not working for me. Can someone please help me?