We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe2cd9 commit 79435ceCopy full SHA for 79435ce
src/runtime/composables/useStudio.ts
@@ -297,7 +297,8 @@ export const useStudio = () => {
297
if (!content) {
298
// Do not navigate to another page if content is not found
299
// This makes sure that user stays on the same page when navigation through directories in the editor
300
- } else if (content._partial || !String(payload.path).endsWith('.md')) {
+ }
301
+ else if (content._partial || !String(payload.path).endsWith('.md')) {
302
// Partials and non-markdown files should use as helpers for other content files, like `_dir.yml`
303
// We should not navigate if content is a partial or non-markdown file
304
}
0 commit comments