Sanitize lib paths
This commit is contained in:
parent
df31c4dcd1
commit
e9a906fbfb
43 changed files with 68 additions and 66 deletions
|
|
@ -13,14 +13,14 @@
|
|||
import { goto } from '$app/navigation';
|
||||
import { page } from '$app/stores';
|
||||
|
||||
import DateFormat from '../../../../components/DateFormat.svelte';
|
||||
import DateRangeFormat from '../../../../components/DateRangeFormat.svelte';
|
||||
import { getAlarmSingle } from '../../../../lib/alarmsingle';
|
||||
import { getAlarmRepeated, weekdayStr } from '../../../../lib/alarmrepeated';
|
||||
import { getAlarmException } from '../../../../lib/alarmexception';
|
||||
import { alarmsRepeated } from '../../../../stores/alarmrepeated';
|
||||
import { alarmsSingle } from '../../../../stores/alarmsingle';
|
||||
import { alarmsExceptions } from '../../../../stores/alarmexceptions';
|
||||
import DateFormat from '$lib/components/DateFormat.svelte';
|
||||
import DateRangeFormat from '$lib/components/DateRangeFormat.svelte';
|
||||
import { getAlarmSingle } from '$lib/alarmsingle';
|
||||
import { getAlarmRepeated, weekdayStr } from '$lib/alarmrepeated';
|
||||
import { getAlarmException } from '$lib/alarmexception';
|
||||
import { alarmsRepeated } from '$lib/stores/alarmrepeated';
|
||||
import { alarmsSingle } from '$lib/stores/alarmsingle';
|
||||
import { alarmsExceptions } from '$lib/stores/alarmexceptions';
|
||||
|
||||
function slugToTitle(slug) {
|
||||
switch(slug) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue