sujayjaju

Results 17 comments of sujayjaju

Edit "vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php" Change Line 312 from: ``` php $pb->add('--sass-dir')->add('')->add('--css-dir')->add(''); ``` to: ``` php $pb->add('--sass-dir')->add($tempDir)->add('--css-dir')->add($tempDir); ``` That fixed it for me.

You need to update $formData before you bind() - that should make it work ``` if ($flow->getCurrentStepNumber() == 1) { $formData->setLat($pointDest->y); $formData->setLng($pointDest->x); } $flow->bind($formData); $form = $flow->createForm(); if ($flow->isValid($form)) {...

@LangdalP As per my understanding, nothing gets persisted to doctrine database until all the steps are done. Essentially, the form data gets serialized and saved in the chosen storage (session...

@tknuppe && @cocciagialla Thanks. That solution is simple and elegant.

Thanks @soarcn , updating the entry in build.gradle fixed it for me ``` implementation 'com.cocosw:bottomsheet:1.4.0@aar' ```

Thanks @andrewgribben Your comment made me realize that the issue was because I was running the command as root! Running as a regular user fixed it for me.

Running as root allows potentially harmful installs to corrupt the system. Its a preventive measure to force explicit action (using ```--unsafe-perm```) to run as root.

Other similar libraries provide an option to clear or keep on uninstall. https://www.npmjs.com/package/react-native-secure-key-store Clearing data should be the default in my opinion.

Digging this back up ... anyone has an example of working with animated GIFs?

I am seeing the same issue. Using imagick module 3.1.2 and ImageMagick 6.7.7 How can I help debug?