Skip to content

Commit

Permalink
a true fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj authored Mar 26, 2024
1 parent feb806e commit 641fa6a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy_on_netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
uses: actions/checkout@master
with:
python-version: '3.11'
node-version: 18

- name: python basics
run: make build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dev:

serve:
rm -rf evidence/build
cd evidence && npm run build
cd evidence && npm run build:strict
cd evidence && npm i -g http-server
cd evidence && npx http-server ./build

Expand Down
2 changes: 1 addition & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions evidence/pages/nba/historical_matchups.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Ever wondered if the '86 Celtics could beat the '96 Bulls? Wonder no more!
union all
select season, team2
from ${elo_history} )
where season = '${inputs.team1_season}'
where season = '${inputs.team1_season_dd.value}'
group by all
order by team
```
Expand All @@ -32,7 +32,7 @@ Ever wondered if the '86 Celtics could beat the '96 Bulls? Wonder no more!
union all
select season, team2
from ${elo_history} )
where season = '${inputs.team2_season}'
where season = '${inputs.team2_season_dd.value}'
group by all
order by team
```
Expand Down Expand Up @@ -197,9 +197,9 @@ Ever wondered if the '86 Celtics could beat the '96 Bulls? Wonder no more!

<DataTable data={stat_table} rows=all>
<Column id="t1" align="center" title=" " />
<Column id="team1" align="right" title="{inputs.team1_season} {inputs.team1}"/>
<Column id="team1" align="right" title="{inputs.team1_season_dd.value} {inputs.team1_dd.value}"/>
<Column id="stat" align="center" title="category" />
<Column id="team2" align="left" title="{inputs.team2_season} {inputs.team2}"/>
<Column id="team2" align="left" title="{inputs.team2_season_dd.value} {inputs.team2_dd.value}"/>
<Column id="t2" align="center" title=" " />
</DataTable>

Expand Down

0 comments on commit 641fa6a

Please sign in to comment.