ai-chat-bot-interface 1.5.6 → 1.5.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/ChatUi.vue +5 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ai-chat-bot-interface",
3
3
  "private": false,
4
- "version": "1.5.6",
4
+ "version": "1.5.7",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "description": "A AI chat bot interface. (private)",
package/src/ChatUi.vue CHANGED
@@ -8,7 +8,7 @@
8
8
  </div>
9
9
  <div class="name_box">
10
10
  <div class="name">{{ name }}</div>
11
- <div class="name_sub">nutribite.com</div>
11
+ <div v-if="nameSub" class="name_sub">{{ nameSub}}</div>
12
12
  </div>
13
13
  </div>
14
14
  <div class="btn_group">
@@ -226,6 +226,10 @@ const props = defineProps({
226
226
  type: String,
227
227
  default: 'Weis Bot',
228
228
  },
229
+ nameSub: {
230
+ type: String,
231
+ default: 'nutribite.com',
232
+ },
229
233
  botId: {
230
234
  type: String,
231
235
  required: true,