Skip to content

Commit

Permalink
Merge pull request #466 from caciviclab/add-election-name
Browse files Browse the repository at this point in the history
Add election name to IEC contribution list
  • Loading branch information
mikeubell authored Dec 14, 2023
2 parents 9df1cbc + 43c92e3 commit 58cfc5f
Show file tree
Hide file tree
Showing 5 changed files with 11,158 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.16.3
18.0.0
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SVGS := $(patsubst %,_includes/svg/%,$(notdir $(wildcard assets/fontawesome/*.sv
PWD=$(shell pwd)
RED=\033[0;31m
CLR=\033[0m
NODE_OPTIONS=--openssl-legacy-provider

build: $(SVGS)
npm run build
Expand All @@ -19,11 +20,11 @@ pull-finance:
npm run pull

serve-docker: $(SVGS)
npm run watch &
NODE_OPTIONS=$(NODE_OPTIONS) npm run watch &
jekyll serve --incremental

serve: $(SVGS)
npm run watch &
NODE_OPTIONS=$(NODE_OPTIONS) npm run watch &
bundle exec jekyll serve --incremental

setup:
Expand Down
5 changes: 4 additions & 1 deletion _layouts/committee.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ <h2>Contributions</h2>
Contributor tables do not presently include loans, although funds
from loans are included in the total contributions received.
</p>
<contributions-table contributions="{{ contributions | jsonify | escape }}"></contributions-table>
<contributions-table
contributions="{{ contributions | jsonify | escape }}"
iec="{{ finance.iec }}">
</contributions-table>
{% endif %}
</div>
</article>
Loading

0 comments on commit 58cfc5f

Please sign in to comment.