We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74b221 commit c8ccc02Copy full SHA for c8ccc02
src/notebooks/deepnote/converters/inputConverters.ts
@@ -188,7 +188,7 @@ export class InputSliderBlockConverter extends BaseInputBlockConverter<typeof De
188
const value = Number.isFinite(parsed) ? parsed : fallback;
189
190
this.updateBlockMetadata(block, {
191
- deepnote_variable_value: value
+ deepnote_variable_value: String(value)
192
});
193
}
194
0 commit comments