D

Results 118 comments of D

Yeah on the PrimeField level. I guess another name is "Computed fields". Because when using a CMS you don't really have access to the code level anymore but may still...

I'm doing the following so I can re-use stuff like **gt-md**: Using **startWith** because ObservableMedia doesn't emit straight away in particular scenarios (dunno why, because it always does in StackBlitz)....

Swapping the above with a structural directive instead: ```html Greater than small ``` ```ts import { Directive, Input, TemplateRef, ViewContainerRef, OnDestroy, ChangeDetectorRef } from '@angular/core'; import { ObservableMedia } from...

Update for beta.14 using the new MatchMedia, hope it helps someone: ```html Greater than small ``` ```ts import { Directive, Input, TemplateRef, ViewContainerRef, OnDestroy, ChangeDetectorRef } from '@angular/core'; import {...

Are you sure? I'm not seeing it but might be missing something. Newly detected values through the expression should next through the Subject which switchMaps into an inner breakpoint observable....

This one has just become a problem for us after updating to [email protected]. ```ts let user: User | null | undefined; userService.user$.pipe(tap(console.log)).subscribe(u => (user = u)); const op = apolloController.expectOne(userQuery);...

Can the recipe not just add `method: 'GET'` instead of removing? Feel like most people will just assume it's unsupported and not realise they can get it via using GET

Also noticing this. I'm using ioredis directly using the URL like: ``` redis://localhost:6379/0 ``` Now I've just updated `apollo-server-cache-redis` they're only using the object param and I can't re-use the...

Related issue: https://github.com/deis/workflow/issues/711

I've started working on a UI for Deis Workflow which has the ability to create pipelines and view them: https://github.com/xcaliber-tech/deis-admin Pipeline view: https://www.dropbox.com/s/dy4p6ehcxfwm236/Screenshot%202017-03-02%2015.25.16.png?dl=0 Still a few items required to finish...