Merge pull request #2500 from nextcloud/issue-2326-personal-settings
Allow emtpy values on personal page and fix saving checkmark position
This commit is contained in:
commit
5d301ed95d
|
@ -586,6 +586,9 @@ span.version {
|
|||
margin-bottom: 8px;
|
||||
display: inline;
|
||||
}
|
||||
form.section {
|
||||
position: relative;
|
||||
}
|
||||
.followupsection {
|
||||
display: block;
|
||||
padding: 0 30px 30px 30px;
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
if (field === 'avatar') {
|
||||
return;
|
||||
}
|
||||
self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self));
|
||||
self.$('#' + field).keyUpDelayedOrEnter(_.bind(self._onInputChanged, self), true);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue