Skip to content

Commit

Permalink
Correct codefactor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hunter-richardson committed Jun 23, 2024
1 parent 52342b5 commit 790a2bc
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 14 deletions.
1 change: 0 additions & 1 deletion src/facies/calculare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
data() {
return {
gustulus: new Gustulus({}),
numerus: numerus.value,
operator: operator,
praevii: nihil,
praesentes: nihil,
Expand Down
10 changes: 1 addition & 9 deletions src/facies/gustulare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,7 @@
const gustulus: ModelRef<Gustulus | undefined, string> = defineModel<Gustulus>()
export default defineComponent({
props: [ 'gustulus' ],
data() {
return {
gustulus: gustulus.value
}
}
})
export default defineComponent({ props: [ 'gustulus' ] })
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion src/facies/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
<numerare :numerus=0 />
</v-tabs-window-item>
<v-tabs-window-item value='calculare'>
<calculare />
<calculare :numerus=0 />
</v-tabs-window-item>
</v-tabs-window>
</v-card>
Expand Down
1 change: 0 additions & 1 deletion src/facies/inflectere.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
seligenda: seligenda,
selecta: selecta,
haec: tabula.tabulentur(),
eventus: eventus.value,
verbum: verbum.value,
onerans: true,
columnae: columnae,
Expand Down
2 changes: 1 addition & 1 deletion src/facies/numerare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
const cocutor: Cocutor = Cocutor.se.ipse();
const numerus: ModelRef<Numerus | undefined, string> = defineModel<Numerus>();
const arabicus: {
integer: number,
numerator: number,
Expand All @@ -37,7 +38,6 @@
return {
gustulus: new Gustulus({}),
anglica: cocutor.edatur('lingua') === 'anglica',
numerus: numerus.value,
validator: validator,
arabicus: arabicus,
romanus: ''
Expand Down
1 change: 0 additions & 1 deletion src/facies/specere.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
data() {
return {
gustulus: new Gustulus({}),
verbum: verbum.value,
eventus: eventus.value,
anglica: lingua === 'anglica',
multiplex: verbum.value instanceof Multiplex,
Expand Down

0 comments on commit 790a2bc

Please sign in to comment.