Merge branch 'staging' of https://github.com/buster-so/buster into staging

This commit is contained in:
Nate Kelley 2025-06-03 16:51:09 -06:00
commit 4f5584925d
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 9 additions and 1 deletions

View File

@ -349,6 +349,14 @@ for (unique_id, node) in &dbt_catalog.nodes {
}
}
// Try wildcard lookup: find any key ending with .model_name
let model_suffix = format!(".{}", model_name);
for (key, &node) in lookup {
if key.ends_with(&model_suffix) {
return Some((node, "wildcard match".to_string(), key.clone()));
}
}
// Fallback to simple name lookup
lookup.get(model_name).map(|&node|
(node, "simple name".to_string(), model_name.to_string())

View File

@ -171,7 +171,7 @@ const CollapseToggleIcon = React.memo(
className
)}
onClick={onClick}>
<AnimatePresence mode="sync">
<AnimatePresence mode="sync" initial={false}>
{showChevron && (
<motion.div
key="chevron"