Skip to content

Commit

Permalink
Merge pull request #345 from com-pas/fix/344-username-is-not-shown
Browse files Browse the repository at this point in the history
Fix: Username is not displayed

closes #344
  • Loading branch information
clepski authored Oct 14, 2024
2 parents c289ef9 + 5ba0a68 commit b5c0740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
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

0 comments on commit b5c0740

Please sign in to comment.