nodebb-theme-persona 13.2.20 → 13.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-persona",
3
- "version": "13.2.20",
3
+ "version": "13.2.21",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.3.0"
6
6
  },
@@ -0,0 +1 @@
1
+ <!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->
@@ -32,10 +32,11 @@
32
32
  <div component="chat/message/body" class="message-body">
33
33
  {messages.content}
34
34
  </div>
35
-
35
+ <!-- IMPORT partials/chats/reactions.tpl -->
36
36
  <div component="chat/message/controls" class="btn-group controls">
37
+ <!-- IMPORT partials/chats/add-reaction.tpl -->
37
38
  <button class="btn btn-sm btn-link" data-action="reply"><i class="fa fa-reply"></i></button>
38
- {{{ if (!config.disableChatMessageEditing && messages.self) }}}
39
+ {{{ if (isAdminOrGlobalMod || (!config.disableChatMessageEditing && messages.self)) }}}
39
40
  <button class="btn btn-sm btn-link" data-action="edit"><i class="fa fa-pencil"></i></button>
40
41
  <button class="btn btn-sm btn-link" data-action="delete"><i class="fa fa-times"></i></button>
41
42
  <button class="btn btn-sm btn-link" data-action="restore"><i class="fa fa-repeat"></i></button>
@@ -0,0 +1 @@
1
+ <!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->