diff options
author | Julien Veyssier <eneiluj@posteo.net> | 2021-07-27 10:31:37 +0200 |
---|---|---|
committer | npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> | 2021-07-27 08:50:04 +0000 |
commit | 5914c5e59c00291ecba10b17927627826294ad5e (patch) | |
tree | 9d49af6bdbec31cad0d4406c40da840b716382d4 /apps/comments/src | |
parent | 39931cab94512fb3f9eece0f03f66fc1b88a933b (diff) | |
download | nextcloud-server-5914c5e59c00291ecba10b17927627826294ad5e.tar.gz nextcloud-server-5914c5e59c00291ecba10b17927627826294ad5e.zip |
fix comments file action sidebar opening
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/comments/src')
-rw-r--r-- | apps/comments/src/filesplugin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/filesplugin.js b/apps/comments/src/filesplugin.js index b8a22612c62..6feb3ddd043 100644 --- a/apps/comments/src/filesplugin.js +++ b/apps/comments/src/filesplugin.js @@ -119,7 +119,7 @@ context.$file.find('.action-comment').tooltip('hide') // open sidebar in comments section OCA.Files.Sidebar.setActiveTab('comments') - OCA.Files.Sidebar.open('/' + fileName) + OCA.Files.Sidebar.open(context.dir + '/' + fileName) }, }) |