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
28
pulls
pipelines
ensure numbers in records are integers
awarm.space
5 months ago
93550e92
c2cd2285
+1
-1
1 changed file
expand all
collapse all
unified
split
actions
publishToPublication.ts
+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
301
-
height: height?.data.value || 600,
301
301
+
height: Math.floor(height?.data.value || 600),
302
302
};
303
303
return block;
304
304
}