fix inputnumber, Umbau auf redis-om, Neubenamung

This commit is contained in:
2024-03-11 18:27:43 +01:00
parent 6ad40b6dca
commit be146fdc6a
25 changed files with 1830 additions and 224 deletions

View File

@@ -1,4 +1,4 @@
import { APP_INITIALIZER, ApplicationConfig, importProvidersFrom } from '@angular/core';
import { APP_INITIALIZER, ApplicationConfig, LOCALE_ID, importProvidersFrom } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
@@ -26,7 +26,8 @@ export const appConfig: ApplicationConfig = {
multi: true,
deps: [SelectOptionsService],
},
provideRouter(routes),provideAnimations()
provideRouter(routes),provideAnimations(),
// {provide: LOCALE_ID, useValue: 'en-US' }
]
};
function initUserService(userService:UserService) {