dmlayton

Results 11 comments of dmlayton

I think the issue is in `cell.svelte`. It sets the context like so: ``` if (sortable) { setContext('SMUI:label:context', 'data-table:sortable-header-cell'); setContext('SMUI:icon-button:context', 'data-table:sortable-header-cell'); setContext('SMUI:icon-button:aria-describedby', columnId + '-status-label'); } ``` We have access...

Looks like there is already a [PR](https://github.com/Uniswap/uniswap-v2-subgraph/pull/73) from a couple of months ago.

Is it maybe this? In `List.svelte` the role is lookup from context: ` let role = getContext('SMUI:list:role');` So if this fails, then this happens: ` if (!role) { if (singleSelection)...

Nope seems like just adding `{role}` to `svelte:component` in `Item.svelte` works.

I couldn't find it in the code or elsewhere. Can you point me to something or show me an example? I did try a few obvious things. On Thu, 10...

> If you want to add a component, it would go here - https://github.com/fourplusone/terraform-provider-jira/blob/master/jira/resource_issue.go#L109-L120 Thanks for letting me know where to start. I've setup my local development envrionment (this will...

Ok so copying the label patterns doesn't work because [go-jira](https://github.com/andygrunwald/go-jira/blob/48c5a07771b63cda984b1c0845a8199b7ad61d61/cloud/issue.go#L122) defines `Components` on `IssueType` as `[]*Component` and `Labels` as `[]string` meaning a component is an object to the api and...

Ok so. This may be naive, but what I am going to try is treating components in th same way as labels, but modify the schema elem to be of...

Matbe i'll try tackling the underlying of not being able to do: `fields = { (data.jira_field.components.id) = ["${jira_component.example.id}","${jira_component.another_example.id}"] }` generically for any of the outstanding upsupported fields that are arrays