mirror of
https://github.com/comatory/fb2iCal
synced 2025-06-05 22:09:25 +02:00
feature: use Svelte to render event list
This commit is contained in:
@ -30,7 +30,10 @@ const createEventStore = () => {
|
||||
return
|
||||
}
|
||||
|
||||
set(state.splice(calculationIndex, 1))
|
||||
const nextState = [ ...state ]
|
||||
nextState.splice(calculationIndex, 1)
|
||||
|
||||
set(nextState)
|
||||
}
|
||||
|
||||
const getState = () => state
|
||||
|
Reference in New Issue
Block a user