@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.js
CHANGED
|
@@ -122,7 +122,7 @@ var defaultChatConfig = {
|
|
|
122
122
|
showActivity: true,
|
|
123
123
|
showActivityDetails: true,
|
|
124
124
|
threadTags: {
|
|
125
|
-
enabled:
|
|
125
|
+
enabled: true,
|
|
126
126
|
groupingEnabled: true,
|
|
127
127
|
defaultGroupBy: "date",
|
|
128
128
|
allowCreate: true,
|
|
@@ -176,7 +176,11 @@ function mergeConfig(_baseConfig, userConfig) {
|
|
|
176
176
|
},
|
|
177
177
|
features: {
|
|
178
178
|
...defaultChatConfig.features,
|
|
179
|
-
...userConfig.features
|
|
179
|
+
...userConfig.features,
|
|
180
|
+
threadTags: {
|
|
181
|
+
...defaultChatConfig.features.threadTags,
|
|
182
|
+
...userConfig.features?.threadTags
|
|
183
|
+
}
|
|
180
184
|
},
|
|
181
185
|
ui: {
|
|
182
186
|
...defaultChatConfig.ui,
|