Skip to content

Commit 273e0b5

Browse files
feat: readable content without island, menu mobile rendered and testing tag component (#1486)
1 parent e9e04e5 commit 273e0b5

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/components/PageContent/PageContent.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const t = useTranslations(Astro);
5050
} -->
5151
<article>
5252
<section class="px-container">
53-
<ReadableContent client:load>
53+
<ReadableContent>
5454
<header>
5555
<div class="mb-8 mt-2">
5656
<Breadcrumb data={breadcrumbs} />

src/content/docs/en/pages/build-journey/develop-with-azion/frameworks/framework-angular.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ menu_namespace: cliMenuAlpha
1414

1515
import Tag from 'primevue/tag';
1616

17-
<Tag severity="info" client:only="vue">
18-
Static application
19-
</Tag>
17+
<Tag severity="info" value="Static application" client:only="vue" />
2018

2119
Angular is an open-source web framework designed with an emphasis on speed and suitability for websites that contain substantial content
2220

src/layouts/BaseLayout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,14 +230,14 @@ const translatedPages = await (async (c) => {
230230
<Fragment slot="mobile-right-sidebar">
231231
<HeaderRightSidebar
232232
class="pt-8 pb-8"
233-
client:only="vue"
233+
client:idle
234234
menuData={menuData}
235235
menuSecondary={menuSecondaryMobile}
236236
bottomButtons={bottomButtonsMobile}
237237
>
238238
<Fragment slot="main-content">
239239
<SidebarPanelMenu
240-
client:only="vue"
240+
client:idle
241241
lang={lang}
242242
data={sidebarSections.map((item) => {
243243
item.hasLabel = (item.hasLabel ? t(item.hasLabel) : '');

0 commit comments

Comments
 (0)