wirekang

Results 41 comments of wirekang

Have you tried running as administrator? And alternatively, you can install Mouseable in RDP host computer (if you can). This is the method I use often.

Mouseable uses [GetKeyNameText API](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getkeynametextw) that receive strings diretly from OS. But it send wrong name like your case. I'll find a way to fix it.

Multiple configs are supported in new version.

Added indication in the tray icon. Removed "ToolTip". Check out new version.

If you have problem with login, checkout `loginPath` and `logoutPath`

I made an adapter that doesn't need ORM. Check out [adminjs-sql](https://www.npmjs.com/package/adminjs-sql). It uses Knex and fetch schema from INFORMATION_SHCEMA.

I found solution! Not working example: ```ts enum MyEnum { Asdf = 'asdf', Qwer = 'qwer', } export class MyClass { @ApiProperty({enum: MyEnum }) my: MyEnum } ``` Working example:...