We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feab18f commit 7fbe0e0Copy full SHA for 7fbe0e0
1 file changed
src/photo-booth/src/views/Printing.vue
@@ -23,7 +23,7 @@
23
24
<!-- IMAGE -->
25
<div class="image-wrapper">
26
- <img :src="demo.selectedPhoto" class="photo" />
+ <img :src="demo.approvedPhoto" class="photo" />
27
</div>
28
29
<!-- FOOTER -->
@@ -71,7 +71,7 @@ onBeforeUnmount(() => {
71
GUARD
72
----------------------------------------- */
73
onMounted(() => {
74
- if (!demo.selectedPhoto) {
+ if (!demo.approvedPhoto) {
75
router.push("/result");
76
return;
77
}
0 commit comments