Skip to content

Commit

Permalink
fix: help item editor should be functional now (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy authored May 8, 2024
1 parent 1badca0 commit f95dafe
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 61 deletions.
94 changes: 47 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
"@ngneat/falso": "^6.4.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"@onecx/accelerator": "^4.14.3",
"@onecx/angular-accelerator": "^4.14.3",
"@onecx/angular-integration-interface": "^4.14.3",
"@onecx/angular-remote-components": "^4.14.3",
"@onecx/angular-testing": "^4.14.3",
"@onecx/integration-interface": "^4.14.3",
"@onecx/keycloak-auth": "^4.14.3",
"@onecx/portal-integration-angular": "^4.14.3",
"@onecx/portal-layout-styles": "^4.14.3",
"@onecx/accelerator": "^4.23.0",
"@onecx/angular-accelerator": "^4.23.0",
"@onecx/angular-integration-interface": "^4.23.0",
"@onecx/angular-remote-components": "^4.23.0",
"@onecx/angular-testing": "^4.23.0",
"@onecx/integration-interface": "^4.23.0",
"@onecx/keycloak-auth": "^4.23.0",
"@onecx/portal-integration-angular": "^4.23.0",
"@onecx/portal-layout-styles": "^4.23.0",
"file-saver": "^2.0.5",
"i18n-iso-countries": "^7.6.0",
"ngx-color": "^8.0.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ import {
PortalDialogService,
PortalMessageService,
UserService,
createRemoteComponentTranslateLoader
createRemoteComponentTranslateLoader,
providePortalDialogService
} from '@onecx/portal-integration-angular'
import { PrimeIcons } from 'primeng/api'
import { RippleModule } from 'primeng/ripple'
Expand All @@ -27,7 +28,6 @@ import { Configuration, Help, HelpsInternalAPIService } from 'src/app/shared/gen
import { SharedModule } from 'src/app/shared/shared.module'
import { environment } from 'src/environments/environment'
import { HelpItemEditorDialogComponent } from './help-item-editor-dialog/help-item-editor-dialog.component'
import { DialogService, DynamicDialogModule } from 'primeng/dynamicdialog'

@Component({
selector: 'app-ocx-help-item-editor',
Expand All @@ -39,7 +39,6 @@ import { DialogService, DynamicDialogModule } from 'primeng/dynamicdialog'
HttpClientModule,
RippleModule,
TooltipModule,
DynamicDialogModule,
HelpItemEditorDialogComponent,
TranslateModule,
SharedModule,
Expand All @@ -49,8 +48,7 @@ import { DialogService, DynamicDialogModule } from 'primeng/dynamicdialog'
providers: [
HelpsInternalAPIService,
PortalMessageService,
DialogService,
PortalDialogService,
providePortalDialogService(),
{
provide: BASE_URL,
useValue: new ReplaySubject<string>(1)
Expand Down

0 comments on commit f95dafe

Please sign in to comment.