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 309307a commit eda0b30Copy full SHA for eda0b30
web_src/js/components/ViewFileTreeStore.ts
@@ -26,7 +26,7 @@ export function createViewFileTreeStore(props: {repoLink: string, treePath: stri
26
27
async loadViewContent(url: string) {
28
const u = new URL(url, window.origin);
29
- u.searchParams.set('only_content', '1');
+ u.searchParams.set('only_content', 'true');
30
const response = await GET(u.href);
31
const elViewContent = document.querySelector('.repo-view-content');
32
elViewContent.innerHTML = await response.text();
0 commit comments