aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/Blog/components/Posts/PostEdit.vue
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-08 17:27:10 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-08 17:27:10 -0400
commitf2781825804039b5ca68466bec7054b8d9ccce5d (patch)
tree07f6b701df7a59b97f17b739a030273286c54e41 /front-end/src/views/Blog/components/Posts/PostEdit.vue
parentd66290269d4709fe2d909284801f31669aa26f74 (diff)
upstream theme updates and patches
Diffstat (limited to 'front-end/src/views/Blog/components/Posts/PostEdit.vue')
-rw-r--r--front-end/src/views/Blog/components/Posts/PostEdit.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/front-end/src/views/Blog/components/Posts/PostEdit.vue b/front-end/src/views/Blog/components/Posts/PostEdit.vue
index 724a8d7..e55deee 100644
--- a/front-end/src/views/Blog/components/Posts/PostEdit.vue
+++ b/front-end/src/views/Blog/components/Posts/PostEdit.vue
@@ -132,7 +132,7 @@ const onDelete = async () => {
const setMeAsAuthor = () => {
apiCall(async () => {
const { first, last } = await getProfile<{first?:string, last?:string, email:string}>();
- v$.value.author.$model = `${first} ${last}`
+ v$.value.author.$model = `${first ?? ''} ${last ?? ''}`
})
}