Ioulian Alexeev

Results 9 comments of Ioulian Alexeev

Ok, this issue only happens when you link the library (or use `file:...` in your `package.json`). When you build the library with `ng build my-lib --prod` and manually copy the...

@00guille I got it working by adding this option to `tsconfig.json` of both the library repository and the main app repository: ```json "angularCompilerOptions": { "enableIvy": false } ``` I haven't...

I use 8.0.0-rc.1 and all the navigation works perfectly except locale change: ```js ``` As soon as I add locale, the page switch takes a long time and redux creates...

This would be useful. As a workaround I listen to onMouseUp event in the modal instead of onClick (that gets prevented).

I have the same issue, we have white QR code on red background

The search url is not correct in the plugin, you need to change these values: Line 36: twitter_search_url: "api.twitter.com" and Line 194: url: "/1.1/search/tweets.json" Then the correct url is being...

@borelandn Make sure the url's are correct. Here is my updated script: http://www.madedifferent.be/public/javascript/jquery.tweet.js. See those line numbers. Everythings works fine there @koraysels Twitter API only returns recent tweets: https://dev.twitter.com/docs/using-search. You...

Oh, this is indeed the side effect of this change, I didn't notice that yet. I will look into it tomorrow, will try and find a better solution

Same here, doing exactly like this file: https://github.com/vercel/next.js/blob/canary/examples/with-mongodb/lib/mongodb.ts but it's recreated multiple times (twice at the start of the application, 1 other time when calling inside a server action from...