sql cell does not work with data source

Yesterday it worked fine, but today all sql cells in this notebook don´t work with the input table: Stadtteile im Vergleich / RND | Observable

this is the code of the data source:

stadtteile_ranking_long = FileAttachment("stadtteile_long.csv").csv().then(
  function(data) {
    data.forEach(function(d) {
      d.Wert = +d.Wert;
    });
    return data;
  }
)

Thank you for the bug report. We are investigating and will report shortly.

2 Likes

is there a workaround for this problem?

Not an easy one, but we’re about to publish a fix. Thank you for your patience! :pray:

Edit: Fix published! :tada:

1 Like

yeah! Thank you


the embed still throws this error

@jchrist That might be your browser cache:

Can you share the URL where you are embedding your notebook?

I cleared the cache, tried it in different browsers and with a forked version but still get this error. The website where it is embedded is not published yet.

sorry for the trouble, there was one last part of the fix that we missed! the embed should work now, although you may want to replace runtime@5 in the generated code with runtime@^5.5.1 to make sure that you’re getting the latest version. please let us know if you’re still seeing issues.

1 Like

thank you for fixing it so quickly!

3 Likes