2021-06-06 18:47:43 +00:00
|
|
|
<template>
|
|
|
|
<p>{{ message }}</p>
|
2021-12-27 14:46:26 +00:00
|
|
|
<button @click="toggleTrace" class="btn">
|
2021-09-05 13:08:26 +00:00
|
|
|
{{ $t("actions.show_more") }}
|
2021-06-06 18:47:43 +00:00
|
|
|
</button>
|
2021-10-31 18:36:47 +00:00
|
|
|
<p ref="stacktrace" style="white-space: pre-wrap" hidden>{{ error }}</p>
|
2021-06-06 18:47:43 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2021-10-08 18:52:51 +00:00
|
|
|
error: { type: String, default: null },
|
|
|
|
message: { type: String, default: null },
|
2021-06-06 18:47:43 +00:00
|
|
|
},
|
2021-10-31 18:36:47 +00:00
|
|
|
methods: {
|
|
|
|
toggleTrace() {
|
|
|
|
this.$refs.stacktrace.hidden = !this.$refs.stacktrace.hidden;
|
|
|
|
},
|
|
|
|
},
|
2021-06-06 18:47:43 +00:00
|
|
|
};
|
|
|
|
</script>
|