We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143d5bc commit 0549a76Copy full SHA for 0549a76
dist/js/entity/mixins/HasRepetitionMixin.js
@@ -9,6 +9,9 @@ function hasRepetitionMixin(item) {
9
get repetition() {
10
return this._repetition;
11
},
12
+ set repetition(repetition) {
13
+ this._repetition = repetition;
14
+ },
15
get totalRepetitions() {
16
return this._totalRepetitions || 1;
17
src/js/entity/mixins/HasRepetitionMixin.ts
@@ -21,6 +21,9 @@ export function hasRepetitionMixin<T extends InMemoryEntity>(
21
22
23
24
+ set repetition(repetition: number) {
25
26
27
28
29
0 commit comments