Skip to content

Commit

Permalink
fix: fixes incorrect variable name reference (close #200)
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Aug 2, 2023
1 parent 66f0e60 commit f45be61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tracker/ui/Difficulty.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</script>

<div class="difficulty-bar-container" aria-label={summary}>
<span>{rpgSystem.SystemDifficulties[0]}</span>
<span>{rpgSystem.systemDifficulties[0]}</span>
<span
><meter
class="difficulty-bar"
Expand All @@ -41,7 +41,7 @@
value={$difficultyBar}
/></span
>
<span>{rpgSystem.SystemDifficulties.slice(-1)}</span>
<span>{rpgSystem.systemDifficulties.slice(-1)}</span>
</div>

<style>
Expand Down

0 comments on commit f45be61

Please sign in to comment.