@copilotz/chat-ui 0.9.12 → 0.9.13
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/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -161,7 +161,7 @@ var defaultChatConfig = {
|
|
|
161
161
|
showActivity: true,
|
|
162
162
|
showActivityDetails: true,
|
|
163
163
|
threadTags: {
|
|
164
|
-
enabled:
|
|
164
|
+
enabled: true,
|
|
165
165
|
groupingEnabled: true,
|
|
166
166
|
defaultGroupBy: "date",
|
|
167
167
|
allowCreate: true,
|
|
@@ -215,7 +215,11 @@ function mergeConfig(_baseConfig, userConfig) {
|
|
|
215
215
|
},
|
|
216
216
|
features: {
|
|
217
217
|
...defaultChatConfig.features,
|
|
218
|
-
...userConfig.features
|
|
218
|
+
...userConfig.features,
|
|
219
|
+
threadTags: {
|
|
220
|
+
...defaultChatConfig.features.threadTags,
|
|
221
|
+
...userConfig.features?.threadTags
|
|
222
|
+
}
|
|
219
223
|
},
|
|
220
224
|
ui: {
|
|
221
225
|
...defaultChatConfig.ui,
|