mirror of
https://github.com/prncc/obsidian-repeat-plugin.git
synced 2026-07-22 06:50:25 +00:00
Fix merge conflict after adding the never repeat setting
This commit is contained in:
parent
8b8f79905d
commit
c3d2d359c2
3 changed files with 2 additions and 8 deletions
|
|
@ -10,7 +10,7 @@ import {
|
|||
Strategy,
|
||||
TimeOfDay,
|
||||
} from './repeatTypes';
|
||||
import { DEFAULT_SETTINGS } from 'src/settings';
|
||||
import { DEFAULT_SETTINGS } from '../settings';
|
||||
|
||||
const joinedUnits = 'hour|day|week|month|year';
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ export interface RepeatPluginSettings {
|
|||
eveningReviewTime: string;
|
||||
defaultRepeat: Repeat;
|
||||
enqueueNonRepeatingNotes: boolean;
|
||||
defaultRepeat: Repeat;
|
||||
}
|
||||
|
||||
export const DEFAULT_SETTINGS: RepeatPluginSettings = {
|
||||
|
|
@ -24,10 +23,4 @@ export const DEFAULT_SETTINGS: RepeatPluginSettings = {
|
|||
repeatTimeOfDay: 'AM',
|
||||
},
|
||||
enqueueNonRepeatingNotes: false,
|
||||
defaultRepeat: {
|
||||
repeatStrategy: 'SPACED',
|
||||
repeatPeriod: 1,
|
||||
repeatPeriodUnit: 'DAY',
|
||||
repeatTimeOfDay: 'AM',
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
"isolatedModules": true,
|
||||
"jsx": "react",
|
||||
"strictNullChecks": true,
|
||||
"esModuleInterop": true,
|
||||
"lib": [
|
||||
"DOM",
|
||||
"ES5",
|
||||
|
|
|
|||
Loading…
Reference in a new issue