Alexander Dozmorov

Results 4 comments of Alexander Dozmorov

If you use docker, this solution works 1) install fonts globally ```docker COPY ./my-custom-font.ttf ./ RUN mkdir -p /usr/share/fonts/truetype/ RUN install -m644 my-custom-font.ttf /usr/share/fonts/truetype/ RUN rm ./my-custom-font.ttf ``` 2) just...

![image](https://user-images.githubusercontent.com/20397923/78219387-17cfd880-74c8-11ea-8c6f-2d7bb7e2ff81.png) If scale equal min (default value 0.1) and i do scaleOut then scaleX and scaleY < 0

I also have the same problem. My workaround (not flexible, but it's ok for simple cases): ```ts export const getFormDirtyFields = ({ initialValues, values, }: { initialValues: FormState; values: FormState;...