Skip to content

Commit 9e5b385

Browse files
committed
formatting edits for linter
1 parent 190e2d5 commit 9e5b385

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/api/EpiData.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -455,14 +455,7 @@ export function importFluViewClinical({
455455
epiweeks: epiRange(firstEpiWeek.fluview, currentEpiWeek),
456456
},
457457
{ regions, issues, lag },
458-
[
459-
'total_specimens',
460-
'total_a',
461-
'total_b',
462-
'percent_positive',
463-
'percent_a',
464-
'percent_b',
465-
],
458+
['total_specimens', 'total_a', 'total_b', 'percent_positive', 'percent_a', 'percent_b'],
466459
).then((ds) => {
467460
// get inside the Promise and make sure its not null,
468461
// then enable display of 'percent_positive' data

src/components/dialogs/dataSources/FluViewClinical.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,10 @@
1515
}
1616
</script>
1717

18-
<SelectField id="{id}-r" label="Region" bind:value={$formSelections.fluViewClinical.locations} options={fluViewRegions} />
18+
<SelectField
19+
id="{id}-r"
20+
label="Region"
21+
bind:value={$formSelections.fluViewClinical.locations}
22+
options={fluViewRegions}
23+
/>
1924
<SelectIssue {id} bind:value={$formSelections.fluViewClinical.issue} />

0 commit comments

Comments
 (0)