Skip to content

Commit

Permalink
Do build
Browse files Browse the repository at this point in the history
  • Loading branch information
sverhoeven committed Jul 25, 2024
1 parent 3361815 commit 8484acb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Build

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
branches: [ "main" ]

jobs:
lint:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -23,3 +23,5 @@ jobs:
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
5 changes: 3 additions & 2 deletions src/molviewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -651,16 +651,17 @@ export function LigandViewer({
function onLigandPick(
chain: string,
residue: number,
componentName: string,
_componentName: string,
resname: string,
) {

onPick(`${resname}-${chain}-${residue}`);
}

function onLigandHover(
chain: string,
residue: number,
componentName: string,
_componentName: string,
resname: string,
) {
onHover(`${resname}-${chain}-${residue}`);
Expand Down

0 comments on commit 8484acb

Please sign in to comment.