mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
Fix incorrect usage of attrs
This commit is contained in:
parent
54f7d42244
commit
0d80363240
@ -148,7 +148,7 @@ function(WidgetManager, _, Backbone){
|
||||
}
|
||||
|
||||
// Delete any key value pairs that the back-end already knows about.
|
||||
var attrs = (method === 'patch') ? options.attrs : model.toJSON(options);
|
||||
var attrs = (method === 'patch') ? model.changed : model.toJSON(options);
|
||||
if (this.key_value_lock !== null) {
|
||||
var key = this.key_value_lock[0];
|
||||
var value = this.key_value_lock[1];
|
||||
|
Loading…
Reference in New Issue
Block a user