Browse Source

Pull request #9145: REPORT-114169 fix: 【多租户】新建数据连接输入框样式问题

Merge in DEC/decision-webui-dcm from ~AUSTIN.DUAN/decision-webui-dcm:research/mss-2.0 to research/mss-2.0

* commit '008573646a8f11fe18ec4b5e4f26706c496fe58f':
  REPORT-114169 fix: 【多租户】新建数据连接输入框样式问题
research/mss-2.0
Austin.Duan-段嗣跃 7 months ago
parent
commit
2b5d1144f3
  1. 2
      src/modules/pages/maintain/forms/components/form.jdbc.ts
  2. 3
      src/modules/pages/maintain/maintain.ts

2
src/modules/pages/maintain/forms/components/form.jdbc.ts

@ -295,7 +295,7 @@ export class FormJdbc extends BI.Widget {
forms: [{
type: BI.Editor.xtype,
$value: 'password',
cls: 'bi-border bi-border-radius',
cls: 'bi-border-bottom',
width: 300,
height: 20,
allowBlank: true,

3
src/modules/pages/maintain/maintain.ts

@ -82,7 +82,8 @@ export class Maintain extends BI.Widget {
this.socketTip.setVisible(true);
}
api.setEditedConnectionStatus(this.model.connectionSelectedOne.connectionName);
this.model.connectionSelectedOne
&& api.setEditedConnectionStatus(this.model.connectionSelectedOne.connectionName);
}
private renderItems() {

Loading…
Cancel
Save