Skip to content

Commit ecc0867

Browse files
committed
Adding tableView false to password components.
1 parent a634513 commit ecc0867

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/password/Password.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export default class PasswordComponent extends TextFieldComponent {
77
type: 'password',
88
label: 'Password',
99
key: 'password',
10-
protected: true
10+
protected: true,
11+
tableView: false
1112
}, ...extend);
1213
}
1314

@@ -23,7 +24,7 @@ export default class PasswordComponent extends TextFieldComponent {
2324
}
2425

2526
get defaultSchema() {
26-
return _.omit(PasswordComponent.schema(), 'protected');
27+
return _.omit(PasswordComponent.schema(), ['protected', 'tableView']);
2728
}
2829

2930
elementInfo() {

0 commit comments

Comments
 (0)