wisetwo

Results 3 comments of wisetwo

> Test case: > > ```js > slide.addShape(pptx.shapes.FOLDED_CORNER,{ x:0.6, y:4.65, w:3, h:2, fill:{color:'F1F1F1'} }); > ``` `foldedCorner` is supposed to be like this: ![image](https://user-images.githubusercontent.com/2604068/104689628-d00bfc00-573d-11eb-82bd-5f5ceeab32f5.png) `folderCorner` is a different shage.

> This is how most backends interpret it - an empty array means there's nothing there, so there's nothing lost. Can you elaborate on the use cases? Sometimes the backend...

Try upgrading `@vue/cli-service` version may fix the problem : ) Here is my situation: before: ``` "@vue/cli-plugin-e2e-cypress": "^5.0.8", "@vue/cli-service": "^4.3.0" ``` after: ``` "@vue/cli-plugin-e2e-cypress": "^5.0.8", "@vue/cli-service": "~5.0.8", ``` > BTW,...