Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Zocca committed Jan 10, 2024
1 parent 9ac1c0e commit 823bfa9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.4

* Use `Plotly.newPlot()` instead of `Plotly.restyle()` because I cannot get restyle() to work with plots that contain
multiple traces

# 0.3

* the HTMX swap mechanism works once more as expected: this extension now receives an *object* from the server, which
Expand Down
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def getData():
x = irisScatter1()

w = plotlyToJSON(x, '<b>It wOrKs</b>')
print(f'.restyle data: {w}')
# print(f'.restyle data: {w}')
return make_response(w)

if __name__ == "__main__":
Expand Down

0 comments on commit 823bfa9

Please sign in to comment.