Client - fix picture refresh after update

This commit is contained in:
Sam 2022-03-27 08:47:42 +02:00
parent b1160f73ba
commit db2390828f

View File

@ -25,7 +25,7 @@
const authUserPictureUrl = computed(() => const authUserPictureUrl = computed(() =>
props.user.picture props.user.picture
? `${getApiUrl()}users/${props.user.username}/picture` ? `${getApiUrl()}users/${props.user.username}/picture?${Date.now()}`
: '' : ''
) )
</script> </script>