av1v3k

Results 5 comments of av1v3k

Inside functional component, if createPortal() method is used, be sure NOT to return null in the ternary operator. Instead of this, `return opened ? ReactDOM.createPortal(renderHTML(), document.body) : null;` use this,...

Below worked. ``` # Use root/example as user/password credentials version: '3.1' services: mongo: image: mongo restart: always environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: example mongo-express: image: mongo-express restart: always ports: - 8081:8081...

I did set the response header mentioned by @Cherepanov6 in Express NodeJS with the below code. `res.setHeader('Access-Control-Expose-Headers','Content-Disposition');` Thanks @Cherepanov6 !

Thanks @joyheron Let me look into it.

Hi @obrassard, How do I generate clientID and client Secret ? Do I need to have Azure account for this ? I was going through this article. https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly Please help.