Update the project to run with modern uv/bun (or python/nodejs) environment #7

Merged
LeoVasanko merged 43 commits from rejuvenile into main 2025-08-15 18:03:04 +01:00
Showing only changes of commit ccad83b8ec - Show all commits

View File

@ -77,8 +77,8 @@ watchEffect(() => {
store.query = props.query
})
watch(() => props.path, () => {
store.prefs.gallery = documents.value.some(d => d.previewable)
watch(documents, (docs) => {
store.prefs.gallery = docs.some(d => d.previewable)
}, { immediate: true })
</script>