Robert King

Results 10 comments of Robert King

for what it's worth, I got [this error](https://stackoverflow.com/questions/52608700/angular-material-mat-chips-autocomplete-bug-matchipinputtokenend-executed-befo) today even after updating all my dependencies... "@angular/animations": "~14.0.6", "@angular/cdk": "^14.0.5", "@angular/common": "~14.0.6", "@angular/compiler": "~14.0.6", "@angular/core": "~14.0.6", "@angular/forms": "~14.0.6", "@angular/material": "^14.0.5", "@angular/platform-browser":...

will app engine standard always be go 1.6?

My quick fix is to increase the debounce_blur.. fingers crossed: ``` ```

nodeDimensionsIncludeLabels: true seems to not be respected on headless mode, probably because of this: ``` //Attach the label properties to compound if labels will be included in node dimensions if...

maybe can do this: const aNodeDimensions = aNode.layoutDimensions({ nodeDimensionsIncludeLabels: true }); const aNodeTextHalign = aNodeData['text-halign'];

thanks @rds-rafael , `this.http.get(this.pdfLink, {responseType: 'arraybuffer' as 'json'}) ` worked for me, a bit strange.

this whole displayFN doesn't make sense to me. Why not just use displayValue and bind to a value in the component. (e.g. [displayValue]="myDisplayValue") Then using (onSelectChange) one can update displayValue...

i had to manually create the mydata directory myself. maybe it was a permissions error.

our problem is we have a seed.ts but it can't import from @my-lib because ts-node doesn't understand the paths from tsconfig.

workaround is to import directly // eslint-disable-next-line @nx/enforce-module-boundaries import { machineConfigs } from '../../../../../libs/donovan/src/lib/consts/machines'; // todo custom executor // import { machineConfigs } from '@thred/donovan'; // todo custom executor that...