Browse Source

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

research/mss-2.0
Austin.Duan 7 months ago
parent
commit
008573646a
  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: [{ forms: [{
type: BI.Editor.xtype, type: BI.Editor.xtype,
$value: 'password', $value: 'password',
cls: 'bi-border bi-border-radius', cls: 'bi-border-bottom',
width: 300, width: 300,
height: 20, height: 20,
allowBlank: true, allowBlank: true,

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

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

Loading…
Cancel
Save