Martin Alex Philip Dawson
Martin Alex Philip Dawson
I also get this issue for client side fallback routes. However for me it does happen on soft refresh too.
I figured out the issue and @jariz was correct. In this case where the html is rendered incorrectly it's an issue with our own code. The problem lies in the...
Perhaps it's linked to this issue? Not sure: https://github.com/aws/aws-sdk-js/issues/281#issuecomment-314048964
This would actually be really useful. For my case I'm just using tickers. For example LSE:BOTB in yahoo finance is BOTB.L. I presume it's a simple mapping for tickers in...
I just realised I was doing this `"1%"` instead of `1%`. I think this is quite a common behaviour for users to do quotes like this as I was doing....
Your Google Doc links are not private. Might want to fix the permissions on it... > Message ID: ***@***.***> >
If anyone knows of a work around to do this in the meantime that would be great as well.
~Actually after debugging through HF I have seen that `LexerConfig.js` holds the regexp patterns. So I can use these to find the cell references through text and then convert them...
This is what I have got working for now: ```js const lexer = this.spreadsheet.hyperformula._parser.lexer; const { tokens } = lexer.tokenizeFormula(text); const cellReferenceParts: ICellReferencePart[] = []; const tokenParts = []; for...
@AMBudnik Thanks. No we just use Hyperformula.js. We are creating our own which will match Google Sheets as close as possible because we needed a canvas based solution in the...