mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
add recipe.image cache key to bush caches (#1427)
* add recipe.image cache key to bush caches * hotfix: TS type error
This commit is contained in:
@@ -47,8 +47,8 @@ export default defineComponent({
|
||||
},
|
||||
emits: ["delete", "save", "test"],
|
||||
setup(props, { emit }) {
|
||||
const itemUTC = ref(props.webhook.scheduledTime);
|
||||
const itemLocal = ref(timeUTCToLocal(props.webhook.scheduledTime));
|
||||
const itemUTC = ref<string>(props.webhook.scheduledTime);
|
||||
const itemLocal = ref<string>(timeUTCToLocal(props.webhook.scheduledTime));
|
||||
|
||||
const scheduledTime = computed({
|
||||
get() {
|
||||
|
||||
Reference in New Issue
Block a user