We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ab02c commit 86c8a8cCopy full SHA for 86c8a8c
packages/app-frontend/src/features/inspector/custom/CustomInspector.vue
@@ -92,7 +92,13 @@ export default defineComponent({
92
icon="explore"
93
class="wait"
94
>
95
- Inspector {{ $route.params.inspectorId }} not found
+ <div class="flex flex-col items-center">
96
+ <div>Inspector {{ $route.params.inspectorId }} not found</div>
97
+ <a
98
+ class="text-green-500 hover:underline cursor-pointer"
99
+ @click="$router.replace({ name: 'inspector-components' })"
100
+ >Go back</a>
101
+ </div>
102
</EmptyPane>
103
</template>
104
0 commit comments