Skip to content

Commit

Permalink
For #240.
Browse files Browse the repository at this point in the history
  • Loading branch information
haocao committed Mar 27, 2017
1 parent 029645c commit c9cab2a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ function renderDataSources() {
sortable: true
}, {
field: "driver",
title: "数据库驱动"
title: "数据库驱动",
sortable: true
}, {
field: "url",
title: "数据库连接地址",
Expand Down Expand Up @@ -152,7 +153,6 @@ function submitDataSource() {
$("#data-sources").bootstrapTable("refresh");
$(".modal-backdrop").remove();
$("body").removeClass("modal-open");
showSuccessDialog();
renderDataSourceForDashboardNav();
getEventTraceNavTag();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ function submitRegCenter() {
$("#reg-centers").bootstrapTable("refresh");
$(".modal-backdrop").remove();
$("body").removeClass("modal-open");
showSuccessDialog();
renderRegCenterForDashboardNav();
getRegCenterNavTag();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ function renderJobsOverview() {
sortable: true
}, {
field: "cron",
title: "cron表达式"
title: "cron表达式",
sortable: true
}, {
field: "description",
title: "描述"
title: "描述",
sortable: true
}, {
field: "operation",
title: "操作",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ function renderJobsOverview() {
sortable: "true"
}, {
field: "description",
title: "描述"
title: "描述",
sortable: true
}, {
field: "operation",
title: "操作",
Expand Down

0 comments on commit c9cab2a

Please sign in to comment.