@saooti/octopus-sdk 30.0.55 → 30.0.56

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/README.md CHANGED
@@ -551,4 +551,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
551
551
  * 30.0.52 Ajout rubriqueIdFilter
552
552
  * 30.0.53 Commentaires live
553
553
  * 30.0.54 Multiselect not reload on close
554
- * 30.0.55 Align participant img
554
+ * 30.0.55 Align participant img
555
+ * 30.0.56 Popover title
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.55",
3
+ "version": "30.0.56",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -8,16 +8,12 @@
8
8
  :id="idPopover"
9
9
  tabindex="-1"
10
10
  class="saooti-help m-0"
11
- :title="$t('Help')"
11
+ :title="title"
12
12
  />
13
13
  <span class="mx-1">:</span>
14
14
  <Popover
15
15
  :target="idPopover"
16
16
  >
17
- <div class="text-center font-weight-bold">
18
- {{ title }}
19
- </div>
20
- <hr>
21
17
  <div
22
18
  v-for="participant in participants"
23
19
  :key="'desc-'+participant.participantId"
@@ -109,5 +109,8 @@ export default defineComponent({
109
109
  .popover{
110
110
  max-height: 80vh;
111
111
  overflow: auto;
112
+ hr{
113
+ width: 100px;
114
+ }
112
115
  }
113
116
  </style>