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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"start": "rollup -c -w",
"server": "sirv public --no-clear --port 8080",
"validate": "svelte-check",
"lint": "eslint src --ext .ts,.js,.svelte && prettier --check \"**/*\"",
"lint": "eslint src --ext .ts,.js,.svelte && (prettier --check \"**/*\" || (prettier --write \"**/*\" ; git diff ; false))",
"fix": "eslint src --ext .ts,.js,.svelte --fix && prettier --write \"**/*\"",
"prepare": "husky install",
"prepack": "npm run build",
Expand Down
21 changes: 11 additions & 10 deletions src/components/dialogs/ImportAPIDialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@
ILINet (aka FluView) (source:
<a target="_blank" href="https://gis.cdc.gov/grasp/fluview/fluportaldashboard.html">cdc.gov</a>)
</label>
<label
><input
class="uk-radio"
type="radio"
name="dataSource"
bind:group={$formSelections.dataSource}
value="covidcast"
/>
Delphi Indicators (aka COVIDcast) (source:
<a target="_blank" href="https://delphi.cmu.edu/">delphi.cmu.edu</a>)</label
>
<label
><input
class="uk-radio"
Expand Down Expand Up @@ -165,16 +176,6 @@
/>
Delphi Nowcast (source: <a target="_blank" href="https://delphi.cmu.edu/">delphi.cmu.edu</a>)</label
>
<label
><input
class="uk-radio"
type="radio"
name="dataSource"
bind:group={$formSelections.dataSource}
value="covidcast"
/>
Delphi COVIDcast (source: <a target="_blank" href="https://delphi.cmu.edu/">delphi.cmu.edu</a>)</label
>
<label
><input
class="uk-radio"
Expand Down