Skip to content

Commit

Permalink
Merge pull request #27 from Duckapple/patch-1
Browse files Browse the repository at this point in the history
fix: Cookware changed `ingredient` -> `cookware`
  • Loading branch information
dubadub authored Nov 10, 2024
2 parents edbfe4a + 4f8404a commit ede64b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cookView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class CookView extends TextFileView {
ispan.appendText(s.name)
}
else if (s instanceof Cookware) {
mp.createSpan({ cls: 'ingredient', text: s.name });
mp.createSpan({ cls: 'cookware', text: s.name });
}
else if (s instanceof Timer) {
const containerSpan = mp.createSpan()
Expand Down Expand Up @@ -409,4 +409,4 @@ export class CookView extends TextFileView {
if ( seconds >= 0) result += seconds;
return result;
}
}
}

0 comments on commit ede64b7

Please sign in to comment.