-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve: LDP-2578: Add getPageLayout helper in useDrupalCe composable #256
Conversation
playground/pages/[...slug].vue
Outdated
useHead({ | ||
title: page.value.title, | ||
meta: page.value.metatags.meta, | ||
link: page.value.metatags.link, | ||
script: [ | ||
{ | ||
type: 'application/ld+json', | ||
children: JSON.stringify(page.value.metatags.jsonld || [], null, ''), | ||
children: JSON.stringify(page.value.metatags.jsonld || []), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems unrelated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reverted this and will commit in ldp-2574
* Determines the page layout based on the Drupal page data. | ||
* @param page Ref containing the Drupal page data | ||
* @returns A computed property that resolves to either the page_layout | ||
* specified in the Drupal data, or 'default' if not specified. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe remove this empty space/re-write it shorter and one line?
@returns A computed property resolving to the specified page_layout or 'default' if unspecified.
Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.5 to 4.0.8. - [Release notes](https://github.com/micromatch/micromatch/releases) - [Changelog](https://github.com/micromatch/micromatch/blob/4.0.8/CHANGELOG.md) - [Commits](micromatch/micromatch@4.0.5...4.0.8) --- updated-dependencies: - dependency-name: micromatch dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: Issue #3336148: Add support for forms * LDP-2492: Remove unnecessary if * LDP-2492: Improve redirect code * LDP-2492: Improve internal redirect code * LDP-2492: Revert redirect code * LDP-2492: Improve code and use page middleware * LDP-2492: Add server middleware and error handling * LDP-2492: Move middleware to module * LDP-2492: Include error message commit * LDP-2492: Add imports
No description provided.