Chilly
Chilly
Adding in the `config-file` setting for me still doesn't work: ``` uses: cypress-io/github-action@v2 with: config-file: cypress.config.ts record: true parallel: true group: 'UI - Chrome' install-command: yarn --immutable browser: chrome headless:...
This sounds good, is a it a big change? I've actually come across a second use case for this today. I'll see if I can use the model in the...
I'm also experiencing this, with the side effect that mounting the app inside the iframe again means we create double api calls, logging `Failed To Fetch` errors from the calls...
I'm getting the same issue here for font sizes. It seems there are a lot of Math.round calls in the codebase that remove values allowed in Powerpoint
Same issue with corepack --version: 0.14.2 and a fresh install of node v18.12.1
@jamie-wearsafe any chance I can talk you into updating your readme?
I can reproduce this with any custom font. It seems dependent on the width of the text box, as well as other items on the page.
@SureshMetacube Looks like it's down to this line: https://github.com/gitbrent/PptxGenJS/blob/035cf6b26239e2ea1f27eefbcdb8134e504eb4f4/src/gen-objects.ts#L1062 It's automatically adding wrap true when we aren't explicitly setting it. Updating to this fixes the issue: `if (typeof itemOpts.wrap ===...
Apologies, the above solution is incorrect. This disables all wrapping, which is not desired. it is infact this line causing the error: https://github.com/gitbrent/PptxGenJS/blob/035cf6b26239e2ea1f27eefbcdb8134e504eb4f4/src/gen-xml.ts#L998 reverting the fix for #174 fixes the...
