nodebb-plugin-composer-default 10.3.25 → 10.3.27
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
|
@@ -17,7 +17,7 @@ define('composer/tags', ['alerts'], function (alerts) {
|
|
|
17
17
|
maxTags = ajaxify.data.hasOwnProperty('maxTags') ? ajaxify.data.maxTags : config.maximumTagsPerTopic;
|
|
18
18
|
|
|
19
19
|
tagEl.tagsinput({
|
|
20
|
-
tagClass: 'badge
|
|
20
|
+
tagClass: 'badge rounded-1',
|
|
21
21
|
confirmKeys: [13, 44],
|
|
22
22
|
trimValue: true,
|
|
23
23
|
});
|
package/static/lib/composer.js
CHANGED
|
@@ -225,8 +225,8 @@ define('composer', [
|
|
|
225
225
|
const topicLink = `[${escapedTitle}](${postHref})`;
|
|
226
226
|
|
|
227
227
|
const quoteKey = useTopicLink ?
|
|
228
|
-
'
|
|
229
|
-
'
|
|
228
|
+
`> ${translator.compile('modules:composer.user-said-in', data.username, topicLink)}\n>\n` :
|
|
229
|
+
`> ${translator.compile('modules:composer.user-said', data.username, postHref)}\n>\n`;
|
|
230
230
|
|
|
231
231
|
if (data.uuid === undefined) {
|
|
232
232
|
composer.newReply({
|