提交 6dc2272a 编写于 作者: baltery's avatar baltery

[Update] 修复无法取消授权资产的前端bug

上级 88a29c0a
......@@ -86,7 +86,7 @@ $(document).ready(function () {
closeOnSelect: false
});
$('#datepicker').datepicker({
format: "yyyy-mm-dd",
format: "yyyy-mm-dd HH:mm",
todayBtn: "linked",
keyboardNavigation: false,
forceParse: false,
......@@ -94,8 +94,11 @@ $(document).ready(function () {
autoclose: true
});
$("#id_assets").parent().find(".select2-selection").on('click', function (e) {
e.preventDefault();
$("#asset_list_modal").modal();
if ($(e.target).attr('class') !== 'select2-selection__choice__remove'){
e.preventDefault();
e.stopPropagation();
$("#asset_list_modal").modal();
}
})
})
.on('click', '#btn_asset_modal_confirm', function () {
......
......@@ -122,7 +122,7 @@ def start_gunicorn():
cmd = [
'gunicorn', 'jumpserver.wsgi',
'-b', bind,
'-k', 'eventlet',
#'-k', 'eventlet',
'-w', str(WORKERS),
'--access-logformat', log_format,
'-p', pid_file,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册