Skip to content

Issues with Native Developer Rig #9

@maael

Description

@maael

I'm not sure if this is in the right place, as it seems to be more an issue to do with the native Developer Rig than anything, but the native Developer Rig doesn't seem to be on GitHub, so I'm posting this here. Let me know if there's a better place for it. I downloaded the native Developer Rig, and created a new project with this boilerplate. Upon running the frontend and backend, and creating a new video component extension view, I could not see the extension, I saw the below.

Screenshot 2020-01-30 at 09 29 02

I then opened it in a browser, and upon investigation, found that the extension was rendering, but an element above it was collapsed to be 2px by 2px, so everything contained, including the extension wasn't visible.

Screenshot 2020-01-30 at 09 26 41

I found to fix this I had to change some CSS manually on this element.

Screenshot 2020-01-30 at 09 26 10

I had to change the CSS to the follow (the top and bottom are most likely resolution dependent I imagine, more a quick fix than anything just to get something visible and over the video portion of the player):

element.style {
    border: 1px solid rgb(125, 85, 199);
    left: 0px;
    position: absolute;
    top: 100px;
    /* height: 0px; */
    /* width: 0px; */
    bottom: 80px;
    right: 0;
}

Once I did this, the extension was visible as expected:

Screenshot 2020-01-30 at 09 28 46

However this isn't possible to do so that it shows up in the Developer Rig.

Am I doing something wrong, is there any extra configuration that needs to be done? Or is this an issue with the Developer Rig? If it's an issue with the rig, do you know how to escalate it so it can be fixed?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions