Skip to content

Commit

Permalink
feat(fitch): make from number removable and increased count for deriv…
Browse files Browse the repository at this point in the history
…ed rules
  • Loading branch information
Kaeldehta committed Nov 20, 2022
1 parent 51d02c8 commit 0aff333
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/fitch/FitchProofFromSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const FitchProofFromSelect = (props: FitchProofFromSelectProps) => {
class="w-20"
onChange={onChange}
>
<option hidden value={-1} />
<option value={-1} />
<Index each={options()}>
{(_, index) => <option value={index}>{index + 1}</option>}
</Index>
Expand Down
2 changes: 1 addition & 1 deletion src/rules/fitch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const propRulesOptions: Record<
},
dr: {
label: "DR",
count: 2,
count: 3,
},
abs: {
label: "Abs.",
Expand Down

0 comments on commit 0aff333

Please sign in to comment.