mirror of
https://github.com/unraid/api.git
synced 2026-01-07 17:19:52 -06:00
fix: fix typescript error
This commit is contained in:
@@ -63,8 +63,8 @@ const getCurrentTabProps = () => {
|
||||
};
|
||||
};
|
||||
|
||||
const updateSelectedTab = (value: string) => {
|
||||
emit('update:selectedTab', value);
|
||||
const updateSelectedTab = (value: string | number) => {
|
||||
emit('update:selectedTab', String(value));
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user