We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8e2259 commit 4a4beccCopy full SHA for 4a4becc
1 file changed
src/App.tsx
@@ -1558,7 +1558,11 @@ const AppContent: React.FC = () => {
1558
1559
// Handler für das Öffnen der Dokumentation in einem neuen Tab
1560
const handleOpenDocumentation = () => {
1561
- window.open('/documentation.html', '_blank');
+ // Verwende relative URL für GitHub Pages Kompatibilität
1562
+ const baseUrl = window.location.pathname.includes('/flow-ui-toolkit')
1563
+ ? '/flow-ui-toolkit'
1564
+ : '';
1565
+ window.open(`${baseUrl}/documentation.html`, '_blank');
1566
};
1567
1568
0 commit comments