mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 22:34:24 +02:00
parent
aa66c9766d
commit
bf229c97b8
@ -66,6 +66,13 @@
|
|||||||
_this.cleanupPickers(containerId);
|
_this.cleanupPickers(containerId);
|
||||||
|
|
||||||
$.each(inputs, function () {
|
$.each(inputs, function () {
|
||||||
|
if (this.type !== 'text') {
|
||||||
|
// Ignore native inputs. Browser widgets are (mostly) superior.
|
||||||
|
// TODO: This makes the type distinction below useless.
|
||||||
|
// Refactor this once we decided how we continue here in the future.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var server_format = _this.server_full_format;
|
var server_format = _this.server_full_format;
|
||||||
if (this.type === 'date') {
|
if (this.type === 'date') {
|
||||||
server_format = _this.server_date_format;
|
server_format = _this.server_date_format;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user