Nikolai Orekhov

Results 21 issues of Nikolai Orekhov

Currently I need to use dynamic context menu like this (approximately): ``` public onContextMenu($event: MouseEvent, contact: Contact): void { $event.preventDefault(); $event.stopPropagation(); this.getContextMenuAction(contact).subscribe( (actions: ContextMenuAction[]) => { this.contextMenuActions = actions; setTimeout(()...

[](https://issuehunt.io/r/sindresorhus/gulp-filter/issues/87) Version 5.0.0 works ok, version 5.0.1 broken. Looks like a change was made between 5.0.0 and 5.0.1 and now filter just skips everything. Here's a simplified code snippet which:...

bug
:dollar: Funded on Issuehunt

We have paging support and can specify `$count=true` to get the count of all elements. Unfortunately there's no way to get `@odata.count` value from a response. Without this OData paging...

enhancement
p3

Current behavior: $expand is enum. Expected behavior: $expand is string because you can have complex expressions in $expand like for example `$expand=Groups($expand=Members)`

Needs: Discussion 🙋

Some entities in proto file can be marked as deprecated. Let's keep deprecated tag for users to see it.

In converted schema there are many places like this: schema: anyOf: - $ref: '#/components/schemas/Pbx.NumberFilterType' This I believe is done to express extra props. Specifically to make this type nullable for...

type:enhancement
status:waiting-for-author-feedback

`node/index.d.ts` now has reference to mocha. This is strange :-) It means you can't really use it with typescript if you don't reference `@types/mocha` which is undesirable in many cases.

**Assemblies affected** ASP.NET Core OData 8.2.4 **Describe the bug** Validation error contains the field details. It might be something like this for the error: `Content\r\nInvalid` on a Windows server. On...

bug

**Assemblies affected** ASP.NET Core OData 8.2.2 **Describe the bug** I'm using OData + EF 7 + NPGSQL. I have a field in DB which has a type `text[]`. When I...

bug

I use `IJwtService` with the following code to generate access token: var credentials = await jwtService.GetCurrentSigningCredentials(); var tokenDescriptor = _jwtSecurityTokenHandler.CreateJwtSecurityToken(_issuer, _issuer, new ClaimsIdentity(claims), expires: DateTime.UtcNow.AddMinutes(60), signingCredentials: credentials); I get here:...