mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
20ad39b327
And remove v-html for channels.
17 lines
382 B
Vue
17 lines
382 B
Vue
<template>
|
|
<p>{{ message }}</p>
|
|
<button uk-toggle="target: #stacktrace" class="uk-button uk-button-small" style="background: #222" type="button">
|
|
Show More
|
|
</button>
|
|
<p id="stacktrace" style="white-space: pre-wrap" hidden>{{ error }}</p>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
error: String,
|
|
message: String,
|
|
},
|
|
};
|
|
</script>
|