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 24dd9d6 commit b3457a0Copy full SHA for b3457a0
notebook/static/notebook/js/celltoolbar.js
@@ -446,6 +446,9 @@ define([
446
var button_container = $(div);
447
var lbl = $("<label/>").append($('<span/>').text(label));
448
var select = $('<select/>');
449
+ if(!cell.is_editable()){
450
+ select.attr("disabled","disabled")
451
+ }
452
for(var i=0; i < list_list.length; i++){
453
var opt = $('<option/>')
454
.attr('value', list_list[i][1])
0 commit comments