diff --git a/src/App.vue b/src/App.vue index c273b5d4cc5a39650ee0ef68882f2e24f414a499..4857644035a95d295dcc5aaf8b751df20d7547dd 100644 --- a/src/App.vue +++ b/src/App.vue @@ -11,6 +11,9 @@ <li> <router-link to="/about">About</router-link> </li> + <li> + <router-link to="/debug">Debug</router-link> + </li> </ul> </div> </nav> diff --git a/src/views/Debug.vue b/src/views/Debug.vue index bbacf059112878e55218efd8713ef8a12fd826be..85680a9b4158cf31e1af75c5742ba30d7917d748 100644 --- a/src/views/Debug.vue +++ b/src/views/Debug.vue @@ -97,7 +97,7 @@ export default { data () { return { isLoading: false, - currentSourceType: this.source, + currentSourceType: this.source || 'webfinger', currentId: this.id, sources: [], providers: [], @@ -159,3 +159,10 @@ export default { }, } </script> +<style scoped> +td, +th { + word-wrap: break-word; + max-width: 150px; +} +</style>