arkaos 3.70.8 → 3.70.9
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/VERSION +1 -1
- package/dashboard/app/pages/personas/[id].vue +6 -3
- package/package.json +1 -1
- package/pyproject.toml +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.70.
|
|
1
|
+
3.70.9
|
|
@@ -310,7 +310,7 @@ function markedHtml(src: string): string {
|
|
|
310
310
|
// PR90a v3.31.0 — download persona as Markdown.
|
|
311
311
|
// v3.70.8 — instead of triggering a download, open a fullscreen
|
|
312
312
|
// dialog with raw markdown + live preview + Edit Bio + Download.
|
|
313
|
-
|
|
313
|
+
// (marked is already imported above for the bio preview.)
|
|
314
314
|
|
|
315
315
|
const mdOpen = ref(false)
|
|
316
316
|
const mdLoading = ref(false)
|
|
@@ -1350,9 +1350,11 @@ const vocabOptions = [
|
|
|
1350
1350
|
/>
|
|
1351
1351
|
</div>
|
|
1352
1352
|
</DashboardState>
|
|
1353
|
-
</template>
|
|
1354
1353
|
|
|
1355
|
-
<!-- v3.70.8 — Markdown viewer/editor (fullscreen)
|
|
1354
|
+
<!-- v3.70.8 — Markdown viewer/editor (fullscreen).
|
|
1355
|
+
Must live inside #body slot — DashboardPanel's default slot
|
|
1356
|
+
wraps header+body and a positional child here would override
|
|
1357
|
+
the whole panel and render nothing. -->
|
|
1356
1358
|
<UModal
|
|
1357
1359
|
v-model:open="mdOpen"
|
|
1358
1360
|
:ui="{
|
|
@@ -1471,6 +1473,7 @@ const vocabOptions = [
|
|
|
1471
1473
|
</div>
|
|
1472
1474
|
</template>
|
|
1473
1475
|
</UModal>
|
|
1476
|
+
</template>
|
|
1474
1477
|
</UDashboardPanel>
|
|
1475
1478
|
</template>
|
|
1476
1479
|
|
package/package.json
CHANGED