1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

Fix i18n issue

This commit is contained in:
Harvey Kandola 2022-09-08 16:45:28 -04:00
parent d4c606760c
commit 2cf21a7bea

View file

@ -85,7 +85,7 @@ export default Component.extend(Notifier, ModalMixin, {
let clip = new ClipboardJS('#page-copy-link-' + pageId, { let clip = new ClipboardJS('#page-copy-link-' + pageId, {
text: function() { text: function() {
self.notifySuccess(this.i18n.localize('copied')); self.notifySuccess(self.i18n.localize('copied'));
return url; return url;
} }
}); });