From 9ccc4b41dc0e58ea9621063709a3de764e041e9d Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Thu, 14 Apr 2022 15:52:16 +0200 Subject: [PATCH] Fix icon not showing after upload in Edit form --- resources/js/views/twofaccounts/Edit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/views/twofaccounts/Edit.vue b/resources/js/views/twofaccounts/Edit.vue index 115b3bd8..4b0cdfe6 100644 --- a/resources/js/views/twofaccounts/Edit.vue +++ b/resources/js/views/twofaccounts/Edit.vue @@ -230,7 +230,7 @@ const { data } = await this.form.upload('/api/v1/icons', imgdata) - this.tempIcon = data; + this.tempIcon = data.filename; },