mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 16:02:24 +00:00
fix: improve workspace specific tags behavior
This commit is contained in:
@@ -296,7 +296,12 @@ pub async fn reload_custom_tags_setting(db: &DB) -> error::Result<()> {
|
||||
let mut l = ALL_TAGS.write().await;
|
||||
*l = [
|
||||
custom_tags.0.clone(),
|
||||
custom_tags.1.keys().map(|x| x.to_string()).collect_vec(),
|
||||
custom_tags
|
||||
.1
|
||||
.values()
|
||||
.flatten()
|
||||
.map(|x| x.to_string())
|
||||
.collect_vec(),
|
||||
]
|
||||
.concat();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user