huskies: merge 946

This commit is contained in:
dave
2026-05-13 07:54:50 +00:00
parent 4a0fbcaa95
commit a7840ea4b0
49 changed files with 378 additions and 314 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ mod tests_stage;
///
/// Returns `None` if the item is not in the CRDT or has no name set.
pub fn read_story_name(_project_root: &Path, _stage: &str, item_id: &str) -> Option<String> {
crate::crdt_state::read_item(item_id).and_then(|v| v.name().map(str::to_string))
crate::crdt_state::read_item(item_id).map(|v| v.name().to_string())
}
/// Look up a story name from the CRDT content store regardless of stage.