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:
authorJulius Härtl <jus@bitgrid.net>2020-11-02 12:38:56 +0300
committerGitHub <noreply@github.com>2020-11-02 12:38:56 +0300
commitd47731e019de5288f9fbb32e8811d6061230d9b6 (patch)
tree18d0b686f877628448d0dbbbb64b0c7fd47e1910 /src
parent3fb54af7814a75cc7cf3db69f117dc4ae69e67d6 (diff)
parent1f0ee14c9e4da2a09e3803305dcf7f5e97b01c7e (diff)
Merge pull request #1210 from nextcloud/fix/noid/escape-name
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)