tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
make backspace work on canvas textblocks
awarm.space
8 months ago
ad1c0b76
b5988c62
+6
1 changed file
expand all
collapse all
unified
split
components
Blocks
TextBlock
keymap.ts
+6
components/Blocks/TextBlock/keymap.ts
···
278
278
279
279
return false;
280
280
}
281
281
+
282
282
+
if (propsRef.current.pageType === "canvas") {
283
283
+
repRef.current?.mutate.removeBlock({
284
284
+
blockEntity: propsRef.current.entityID,
285
285
+
});
286
286
+
}
281
287
return true;
282
288
}
283
289