Browse Source

Update field alignment on init, not only on resize; prevent dispaying in a row, when fields should be displayed in a column (#2434)

pull/2441/head
Chantsova Ekaterina 7 years ago
committed by GitHub
parent
commit
9f0871af7f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      ui/src/app/widget/lib/multiple-input-widget.js

1
ui/src/app/widget/lib/multiple-input-widget.js

@ -225,6 +225,7 @@ function MultipleInputWidgetController($q, $scope, $translate, attributeService,
if (!vm.isVerticalAlignment && vm.settings.fieldsInRow) {
vm.inputWidthSettings = 100 / vm.settings.fieldsInRow + '%';
}
updateWidgetDisplaying();
}
function updateDatasources() {

Loading…
Cancel
Save