chore: fix transform field type error

This commit is contained in:
appflowy
2022-04-10 20:21:28 +08:00
parent 43095cb0dd
commit 9d629412c8
12 changed files with 71 additions and 44 deletions

View File

@ -165,8 +165,8 @@ impl GridBlockMetaPad {
Some(delta) => {
tracing::debug!("[GridBlockMeta] Composing delta {}", delta.to_delta_str());
tracing::debug!(
"[GridBlockMeta] Composing str {}",
delta.to_str().unwrap_or("".to_string())
"[GridBlockMeta] current delta: {}",
self.delta.to_str().unwrap_or("".to_string())
);
self.delta = self.delta.compose(&delta)?;
Ok(Some(GridBlockMetaChange { delta, md5: self.md5() }))