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 184172d commit b863541Copy full SHA for b863541
web/components/LayoutViews/Detail/DetailRightContent.vue
@@ -63,8 +63,8 @@ const getCurrentTabProps = () => {
63
};
64
65
66
-const updateSelectedTab = (value: string) => {
67
- emit('update:selectedTab', value);
+const updateSelectedTab = (value: string | number) => {
+ emit('update:selectedTab', String(value));
68
69
</script>
70
0 commit comments