Fix links for docs (#2908)

* fix docs paths

* docsLink directive

* fix: bugs (#2909)

---------

Co-authored-by: Alex Inkin <alexander@inkin.ru>
This commit is contained in:
Matt Hill
2025-04-24 14:14:08 -06:00
committed by GitHub
parent 2cf4864078
commit 05dd760388
29 changed files with 193 additions and 167 deletions

View File

@@ -10,6 +10,7 @@ import {
I18N_STORAGE,
i18nService,
RELATIVE_URL,
VERSION,
WorkspaceConfig,
} from '@start9labs/shared'
import {
@@ -27,6 +28,7 @@ import {
import { tuiTextfieldOptionsProvider } from '@taiga-ui/legacy'
import { PatchDB } from 'patch-db-client'
import { filter, of, pairwise } from 'rxjs'
import { ConfigService } from 'src/app/services/config.service'
import {
PATCH_CACHE,
PatchDbSource,
@@ -112,6 +114,10 @@ export const APP_PROVIDERS: Provider[] = [
return (language: string) => api.setDbValue(['language'], language)
},
},
{
provide: VERSION,
useFactory: () => inject(ConfigService).version,
},
]
export function appInitializer(): () => void {