Merge pull request 'Fixed external link problem' (#1) from bugfix/external-link-problem into main
All checks were successful
Build & Push Frontend A / docker (push) Successful in 1m4s
All checks were successful
Build & Push Frontend A / docker (push) Successful in 1m4s
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import {ApplicationConfig, inject, provideAppInitializer, provideBrowserGlobalErrorListeners, provideZonelessChangeDetection} from '@angular/core';
|
import {ApplicationConfig, inject, provideAppInitializer, provideBrowserGlobalErrorListeners, provideZonelessChangeDetection} from '@angular/core';
|
||||||
import { provideRouter } from '@angular/router';
|
import { provideRouter, withInMemoryScrolling } from '@angular/router';
|
||||||
|
|
||||||
import { routes } from './app.routes';
|
import { routes } from './app.routes';
|
||||||
import {provideAnimations} from '@angular/platform-browser/animations';
|
import {provideAnimations} from '@angular/platform-browser/animations';
|
||||||
@@ -17,7 +17,12 @@ export const appConfig: ApplicationConfig = {
|
|||||||
providers: [
|
providers: [
|
||||||
provideBrowserGlobalErrorListeners(),
|
provideBrowserGlobalErrorListeners(),
|
||||||
provideZonelessChangeDetection(),
|
provideZonelessChangeDetection(),
|
||||||
provideRouter(routes),
|
provideRouter(
|
||||||
|
routes,
|
||||||
|
withInMemoryScrolling({
|
||||||
|
scrollPositionRestoration: 'top',
|
||||||
|
anchorScrolling: 'enabled'
|
||||||
|
})),
|
||||||
provideAnimations(),
|
provideAnimations(),
|
||||||
provideHttpClient(),
|
provideHttpClient(),
|
||||||
provideTranslateService({
|
provideTranslateService({
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ export class ProjectsComponent {
|
|||||||
],
|
],
|
||||||
icon: 'sports_esports',
|
icon: 'sports_esports',
|
||||||
assets: '',
|
assets: '',
|
||||||
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https.store.steampowered.com/app/1532640/El_Mucho/'}],
|
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https://store.steampowered.com/app/1532640/El_Mucho/'}],
|
||||||
bulletPoints: [
|
bulletPoints: [
|
||||||
'PROJECTS.EL_MUCHO.BULLET_1',
|
'PROJECTS.EL_MUCHO.BULLET_1',
|
||||||
'PROJECTS.EL_MUCHO.BULLET_2',
|
'PROJECTS.EL_MUCHO.BULLET_2',
|
||||||
@@ -103,7 +103,7 @@ export class ProjectsComponent {
|
|||||||
],
|
],
|
||||||
icon: 'videogame_asset',
|
icon: 'videogame_asset',
|
||||||
assets: '',
|
assets: '',
|
||||||
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https.itch.io/c/6628860/lobos-collection'}],
|
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https://itch.io/c/6628860/lobos-collection'}],
|
||||||
bulletPoints: [
|
bulletPoints: [
|
||||||
'PROJECTS.GAME_JAMS.BULLET_1',
|
'PROJECTS.GAME_JAMS.BULLET_1',
|
||||||
'PROJECTS.GAME_JAMS.BULLET_2',
|
'PROJECTS.GAME_JAMS.BULLET_2',
|
||||||
@@ -128,7 +128,7 @@ export class ProjectsComponent {
|
|||||||
],
|
],
|
||||||
icon: 'history_edu',
|
icon: 'history_edu',
|
||||||
assets: AssetsConstants.DIPLOMA,
|
assets: AssetsConstants.DIPLOMA,
|
||||||
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https.www.th-bingen.de'}],
|
links: [{name: 'PROJECTS.LINK_TO_PROJECT', url: 'https://www.th-bingen.de'}],
|
||||||
bulletPoints: [
|
bulletPoints: [
|
||||||
'PROJECTS.DIPLOMA.BULLET_1',
|
'PROJECTS.DIPLOMA.BULLET_1',
|
||||||
'PROJECTS.DIPLOMA.BULLET_2',
|
'PROJECTS.DIPLOMA.BULLET_2',
|
||||||
|
|||||||
Reference in New Issue
Block a user