Skip to content

Commit ce930a0

Browse files
committed
Fix date-picker to resend even if value hasn't changed
1 parent 04825e1 commit ce930a0

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
- Add text styling feature to ui_text. PR #805
55
- Fix to support locking flow tab. PR #799
66
- Fix sidebar to not obscure toast. Issue #803
7-
- Fix ui_audio to be socket specific. Issue #807
7+
- Fix ui_audio to be socket specific. Issue #807\
8+
- Fix date-picker to send even if valkue is reselected.
89

910
### 3.4.1: Maintenance Release
1011

dist/dashboard.appcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Time: Wed May 24 2023 08:32:04 GMT+0100 (British Summer Time)
2+
# Time: Wed May 24 2023 17:11:51 GMT+0100 (British Summer Time)
33

44
CACHE:
55
i18n.js
@@ -26,4 +26,4 @@ loading.html
2626
NETWORK:
2727
*
2828

29-
# hash: 168e5607e24ec14aeaaa51e64735c71028adc39436ae36c9e70020a1a419427b
29+
# hash: c2ba978b56b3995cc2674f6d3d9538a08637b0a64d6f3d27a1b1ce0383871bb2

dist/js/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/ui-component/templates/date-picker.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
md-placeholder="{{me.item.getLabel()}}"
1717
md-open-on-focus
1818
ng-model="me.item.ddd"
19-
ng-change="me.setDate()">
19+
ng-blur="me.setDate()">
2020
</md-datepicker>
2121
</md-input-container>
2222
</md-card>

src/components/ui-component/ui-component-ctrl.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ angular.module('ui').controller('uiComponentController', ['$scope', 'UiEvents',
314314
me.item.me = me;
315315
break;
316316
}
317+
317318
case 'form': {
318319
me.processInput = function(msg) {
319320
if (typeof(msg.value) != 'object') { return; }

0 commit comments

Comments
 (0)