Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGary Kim <gary@garykim.dev>2020-10-19 19:22:56 +0300
committerGary Kim <gary@garykim.dev>2020-10-19 19:22:56 +0300
commit1f0ee14c9e4da2a09e3803305dcf7f5e97b01c7e (patch)
treec3a418cf8f7d10232585224a984802c68a0c5c0f /src
parent886ddb62ce5fbcb8ba210ce90c27a78066b3188a (diff)
Fix escaping for edit with message
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'src')
-rw-r--r--src/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/files.js b/src/files.js
index 1fe1eba2..a6bdf5b8 100644
--- a/src/files.js
+++ b/src/files.js
@@ -41,7 +41,7 @@ const odfViewer = {
const shareOwnerId = fileModel.shareOwnerId
return this.onEdit(fileName, { ...context, shareOwnerId })
},
- t('richdocuments', 'Edit with {productName}', { productName: OC.getCapabilities().richdocuments.productName })
+ t('richdocuments', 'Edit with {productName}', { productName: OC.getCapabilities().richdocuments.productName }, undefined, { escape: false })
)
if (odfViewer.excludeMimeFromDefaultOpen.indexOf(mime) === -1 || isDownloadHidden) {
OCA.Files.fileActions.setDefault(mime, EDIT_ACTION_NAME)