Skip to content
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

fix(docs): update links for Edit this page button #5445

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/docs/src/components/on-this-page/on-this-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const QWIKCITY_GROUP = [
'endpoints',
'env-variables',
'guides',
'html-attributes',
'layout',
'middleware',
'pages',
Expand All @@ -46,6 +47,7 @@ const QWIKCITY_GROUP = [
'routing',
'server$',
'troubleshooting',
'validator',
];
const QWIKCITY_ADVANCED_GROUP = [
'content-security-policy',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { component$, useVisibleTask$, useSignal } from '@builder.io/qwik';

export default component$(() => {
const aHref = useSignal<Element>();
useVisibleTask$(({cleanup}) => {
useVisibleTask$(({ cleanup }) => {
const handler = (event: Event) => {
event.preventDefault();
window.open('http://qwik.builder.io');
Expand Down