mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-30 07:12:12 +00:00
Fix active tab not updating on prop change (#2712)
This commit is contained in:
@@ -62,7 +62,10 @@ const props = defineProps<{
|
||||
search?: string;
|
||||
fullWidth?: boolean;
|
||||
}>();
|
||||
defineEmits(['update:search']);
|
||||
|
||||
defineEmits<{
|
||||
(event: 'update:search', query: string): void;
|
||||
}>();
|
||||
|
||||
const searchBoxPresent = props.search !== undefined;
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user