Kelvien Hidayat

Results 8 comments of Kelvien Hidayat

I just want to share my findings that is not yet complete. I was looking into the `component/handlers/edit/editOnInput.js` and found that adding a space after double whitespaces has a weird...

Adding more details on my findings at my prior post, I found that the content is also handled by the `handleBeforeInput`. So, to "disable" OS's behavior in replacing 2 whitespaces...

Make sure that the Docker container is also exposing the 10255 port as well, otherwise accessing it through shell/GUI like Studio 3T will not establish a connection for you

Do you mean passing the string instead of the function, right? Suggested here - https://github.com/typeorm/typeorm/issues/4190 I tried that too and it didn't work. Here is the generated code: ``` _dec4...

I gave that a try, but the generated code doesn't change at all Code: ``` @OneToOne('Profile') profile?: Profile | undefined; ``` Transpiled code ``` _dec9 = Reflect.metadata("design:type", typeof Profile ===...

Changing it to `Profile | null` also generate the same code. But `profile?: Profile | string` results into `_dec26 = Reflect.metadata("design:type", Object)`, obviously not what I wanted but at least...

Update: I also notice that my Babel/Webpack is outputting a different result between dev and prod. And it seems like it works fine if Webpack bundles my barrel file correctly...

Hey @mmahalwy, one alternative was to put the models with circular dependency into one file, it's not the most ideal approach, but I can't seem to find a better solution...