Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/automate-projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,3 @@ jobs:
project: CoMPAS Issues Overview Board
column: To do
repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }}
- name: add-new-pull-request-to-organization-based-project-column
if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened'
uses: alex-page/[email protected]
with:
project: CoMPAS Pull Request Overview Board
column: To do
repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }}
3 changes: 2 additions & 1 deletion packages/compas-open-scd/src/addons/CompasLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,8 @@ export class CompasLayout extends LitElement {
}
);

this.addEventListener('userinfo', this.onUserInfo);
this.onUserInfo = this.onUserInfo.bind(this);
this.host.addEventListener('userinfo', this.onUserInfo);
}

private onUserInfo(event: UserInfoEvent) {
Expand Down