make name the core block info

This commit is contained in:
2026-07-12 18:19:41 +02:00
parent f5e1ba1104
commit 9a7710d675
7 changed files with 43 additions and 9 deletions
@@ -4,7 +4,7 @@ enum PHBlockKind: String {
extension PHBlock {
var kind: PHBlockKind {
if command.starts(with: "_space") { return .space }
if name.starts(with: "_space") { return .space }
return .text
}
}