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 ca336e9 commit 7b51568Copy full SHA for 7b51568
src/app.jsx
@@ -1718,7 +1718,10 @@ class App extends Component {
1718
response.statusText
1719
)
1720
this.setState({
1721
- jupyterDocument: await response.json(),
+ jupyterDocument: {
1722
+ ...(await response.json()),
1723
+ nbformat_minor: 5
1724
+ },
1725
jupyterFilename: node.filename,
1726
ipynbuploadname: node.name || 'Dummy title',
1727
jupyterId: node.id,
@@ -1869,7 +1872,7 @@ class App extends Component {
1869
1872
metadata: {
1870
1873
orig_nbformat: 4
1871
1874
},
- nbformat_minor: 4,
1875
+ nbformat_minor: 5,
1876
nbformat: 4,
1877
cells: []
1878
0 commit comments