summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
index c78609414..5b818d6d8 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -3,6 +3,16 @@
<div v-if="app.error" id="warning-box">
<div>
{{ app.error }}
+
+ <ul v-for="link of app.error.links" :key="link.url">
+ <li>
+ <a :href="link.url"
+ target="_blank"
+ rel="noreferrer">
+ {{ link.text }}
+ </a>
+ </li>
+ </ul>
</div>
<div>
<span style="cursor: pointer;padding: 10px;font-weight: bold;" @click="removeError()">X</span>
@@ -104,6 +114,12 @@ export default Vue.extend({
display: flex;
}
+ #warning-box a {
+ color: #3a84e4;
+ text-decoration: underline;
+ font-size: small;
+ }
+
.route-container {
height: 100%;
}