Skip to content

Commit

Permalink
maint: bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
juba committed Aug 28, 2024
1 parent 7185383 commit 4937f1b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pyobsplot/static/static-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -42224,9 +42224,7 @@ function unserialize_data(data, renderer) {
if (renderer == "jsdom") {
value = Buffer.from(value, "base64");
}
console.log(value);
let table = tableFromIPC(value);
console.log(table);
result.push(table);
} else {
result.push(d);
Expand Down Expand Up @@ -42312,6 +42310,9 @@ function generate_plot(spec, renderer) {
out = plot(out);
}
} catch (error) {
if (renderer == "widget") {
console.error(error);
}
out = document.createElement("pre");
out.style.color = "#DD3333";
out.style.padding = ".5em 1em";
Expand Down

0 comments on commit 4937f1b

Please sign in to comment.