Ilko Kacharov

Results 50 comments of Ilko Kacharov

Awesome PR, thanks for the implementation. I hope it will be accepted soon :rocket:

Hey @AlgusDark I'm experiencing the same issue as stated above, so I consider the case still to be ongoing. ``` import { Input } from "bloomer"; const inputRef = React.createRef();...

We're experiencing this issue as well while running several builds in matrix. I'll provide more details tomorrow when I run the workflow with debug enabled.

> Everything goes well.I have deployed in AKS. @sunilkumarjena21 How did you manage to resolve the following error: > unable to recognize "STDIN": no matches for kind "DecoratorController" in version...

@uvwild `metacontroller` actually is being included here https://github.com/hpi-schul-cloud/jitsi-deployment/tree/master/base/ops/metacontroller The `ops/` folder is included only in the `development-monitoring` and `production-monitoring` overlays. Keep in mind that the `GoogleCloudPlatform/metacontroller` repo has been deprecated...

In the exported realm JSON you can add it in `clientRoles['realm-management']` ```json { "users": [ { "createdTimestamp": 1633496114712, "username": "service-account-dev-headless", "enabled": true, "totp": false, "emailVerified": false, "serviceAccountClientId": "dev-headless", "disableableCredentialTypes": [],...

I've ended up in the same scenario when trying to import `SentryInterceptor` ``` [Nest] 638883 - 09/21/2021, 11:45:51 AM LOG [InstanceLoader] SentryModule dependencies initialized +143ms [Nest] 638883 - 09/21/2021, 11:45:51...

One workaround is to use `useValue: new SentryInterceptor()` instead of `useClass: SentryInterceptor` but that's not very efficient ```diff { provide: APP_INTERCEPTOR, - useClass: SentryInterceptor, + useValue: new SentryInterceptor(), }, ```...

I see this has been implemented in the codebase as `ConfirmationDialog` and `useConfirm` hook https://github.com/podkrepi-bg/frontend/blob/master/src/components/common/ConfirmationDialog.tsx https://github.com/podkrepi-bg/frontend/blob/master/src/common/hooks/useConfirm.ts What might be left is to use these components in the delete modals and...

@angelina-7 Please point to the figma design where this is requested