Skip to content

Commit dc0977c

Browse files
committed
* adopt deprecation in nuxt/nuxt#33912 @ error.vue
@ fe/src
1 parent 5878ba5 commit dc0977c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fe/src/error.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<div class="container">
44
<PlaceholderError
55
:error="new ApiResponseError(
6-
error.statusCode,
7-
_.isEmpty(error.statusMessage) || error.statusMessage === undefined ? error.message : error.statusMessage
6+
error.status,
7+
_.isEmpty(error.statusText) || error.statusText === undefined ? error.message : error.statusText
88
)" />
99
<!-- eslint-disable-next-line vue/no-v-html -->
1010
<pre v-if="'stack' in error" v-html="error.stack" />

0 commit comments

Comments
 (0)