Skip to content

Commit

Permalink
Update solara/website/pages/docs/content/10-howto/30-tasks.md
Browse files Browse the repository at this point in the history
Co-authored-by: Iisakki Rotko <iisakki.rotko@widgetti.io>
  • Loading branch information
maartenbreddels and iisakkirotko committed Feb 26, 2024
1 parent e54c52c commit b2aa929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/website/pages/docs/content/10-howto/30-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def Page():
def get_country_data():
return requests.get(f"https://restcountries.com/v3.1/name/{country.value}").json()[0]
result = use_task(get_country_data, call=True, dependencies=[country.value])
result = use_task(get_country_data, dependencies=[country.value])
solara.Select("Choose country", value=country, values=countries)
solara.ProgressLinear(result.state == solara.ResultState.RUNNING)
Expand Down

0 comments on commit b2aa929

Please sign in to comment.