Maxim Mordasov

Results 12 comments of Maxim Mordasov

> > > 5. Cannot delete override which is happening now: > > > > > > @maskin25 I checked the backend part, the override deletion works the same as...

I don't like that you copypasted ``` notFound?: boolean; wrongTeamError?: boolean; teamToSwitch?: { name: string; id: string }; wrongTeamNoPermissions?: boolean; ``` to many pages, it would be good to wrap...

good proposal, let's add toggler that allows see raw content

@jeschkies sorry for late response, actually it was a bug, it's fixed now, you can reload page and filters will not be cleared

@teodosii design [here](https://www.figma.com/file/e8B4keoGxQRlenH8rYTCpN/Grafana-OnCall-Calendar?node-id=1038%3A23688)

@jakubvojacek actually request OPTIONS /grafana-oncall-app/api/internal/v1/notification_policies/ should have a response (check it in response tab). Response should contain a wait_delay options as @Matvey-Kuk showed. Can you check `actions.POST.wait_delay.choices` in response please?

hmmm interesting, it has response in my tests (see below) can you try it in other browser please, maybe your browser policies block this request ``` curl 'http://localhost:3000/api/plugin-proxy/grafana-oncall-app/api/internal/v1/notification_policies/' \ -X...

or maybe your browser modify request somehow, our CURLs are slightly differ

and yes, you are right: according to specifications we should not use OPTIONS request here, it's better to use usual GET request, but actually it works

@joeyorlando it displays a red border because the value must be a multiple of 5 (see [minuteStep](https://github.com/grafana/oncall/blob/dev/grafana-plugin/src/components/TimeRange/TimeRange.tsx#L97) param), should we disable this restriction, WDYT?