a tool for shared writing and social publishing

ensure numbers in records are integers

+1 -1
+1 -1
actions/publishToPublication.ts
··· 298 298 let block: $Typed<PubLeafletBlocksIframe.Main> = { 299 299 $type: "pub.leaflet.blocks.iframe", 300 300 url: url.data.value, 301 - height: height?.data.value || 600, 301 + height: Math.floor(height?.data.value || 600), 302 302 }; 303 303 return block; 304 304 }