@saooti/octopus-sdk 41.12.0 → 41.12.1-beta
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/CHANGELOG.md +11 -0
- package/package.json +1 -1
- package/src/components/display/emission/EmissionInlineList.vue +1 -1
- package/src/components/layouts/PresentationLayout.vue +1 -4
- package/src/components/misc/ClassicNotifications.vue +4 -1
- package/src/components/pages/PlaylistsPage.vue +0 -1
- package/src/stores/AuthStore.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 41.12.1 (En cours)
|
|
4
|
+
|
|
5
|
+
**Fixes**
|
|
6
|
+
|
|
7
|
+
- Correction d'une anomalie de chargement du style de la modale utilisée par
|
|
8
|
+
`ClassicNotifications`
|
|
9
|
+
|
|
10
|
+
**Misc**
|
|
11
|
+
|
|
12
|
+
- Suppression de la marge entre le titre et le contenu pour `PresentationLayout`
|
|
13
|
+
|
|
3
14
|
## 41.12.0 (13/07/2026)
|
|
4
15
|
|
|
5
16
|
**Features**
|
package/package.json
CHANGED
|
@@ -14,7 +14,10 @@
|
|
|
14
14
|
<script setup lang="ts">
|
|
15
15
|
import { storeToRefs } from 'pinia';
|
|
16
16
|
import { useNotificationStore } from '../../stores/NotificationStore';
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
const MessageModal = defineAsyncComponent(() => import('./modal/MessageModal.vue'));
|
|
19
|
+
|
|
20
|
+
import { defineAsyncComponent } from 'vue';
|
|
18
21
|
|
|
19
22
|
const {
|
|
20
23
|
clearNotification
|
package/src/stores/AuthStore.ts
CHANGED
|
@@ -227,7 +227,8 @@ export const useAuthStore = defineStore("AuthStore", {
|
|
|
227
227
|
});
|
|
228
228
|
this.authUpdateOrganisation(activeOrganisation);
|
|
229
229
|
this.fetchProfileAsynchrone();
|
|
230
|
-
} catch {
|
|
230
|
+
} catch(error) {
|
|
231
|
+
console.error(error);
|
|
231
232
|
if (this.authReload > 5) {
|
|
232
233
|
return;
|
|
233
234
|
}
|