aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/SkillFactorSelect.svelte
blob: bc882a7f5590f76e27f7121f67ae0e95fa10dcf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
  import { getSkillFactor, setSkillFactor } from "../stores/skillFactor.svelte.js";
</script>

<select
  aria-label="State"
  bind:value={() => String(getSkillFactor()), setSkillFactor}
>
  <option value="10">All Levels</option>
  <option value="5">2 Levels</option>
  <option value="3">3 Levels</option>
  <option value="1">Skill Based</option>
</select>