Skip to content

Commit c0b31c3

Browse files
committed
Fixes angular-schema-form-bootstrap#41
Fixes angular-schema-form-bootstrap#41 thanks to @ramakrij
1 parent 16463f2 commit c0b31c3

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This alpha fixes a bunch of array and destroyStrategy bugs.
1515
- #750 Removing an invalid array item doesn't work properly
1616
- #769 Model inside Array is not cleaned when Condition fails
1717
- #857 **Regression** boolean values only saving true to model
18+
- Fixes angular-schema-form-bootstrap#41 Place holder does not disappear even after a valid field is selected. Thanks to @ramakrij
1819

1920
v1.0.0-alpha.3
2021
--------------

dist/angular-schema-form-bootstrap.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* angular-schema-form
33
* @version 1.0.0-alpha.4
4-
* @date Fri, 14 Apr 2017 16:07:04 GMT
4+
* @date Mon, 17 Apr 2017 08:57:48 GMT
55
* @link https://github.com/json-schema-form/angular-schema-form
66
* @license MIT
77
* Copyright (c) 2014-2017 JSON Schema Form
@@ -93,7 +93,7 @@ module.exports = __webpack_require__(3);
9393
/*!
9494
* angular-schema-form-bootstrap
9595
* @version 1.0.0-alpha.4
96-
* @date Mon, 03 Apr 2017 13:11:24 GMT
96+
* @date Mon, 17 Apr 2017 08:57:43 GMT
9797
* @link https://github.com/json-schema-form/angular-schema-form-bootstrap
9898
* @license MIT
9999
* Copyright (c) 2014-2017 JSON Schema Form
@@ -499,7 +499,7 @@ module.exports = __webpack_require__(3);
499499
'radios-inline': { template: __WEBPACK_IMPORTED_MODULE_9__bootstrap_radios_inline_html___default.a, builder: defaults },
500500
radiobuttons: { template: __WEBPACK_IMPORTED_MODULE_7__bootstrap_radio_buttons_html___default.a, builder: defaults },
501501
section: { template: __WEBPACK_IMPORTED_MODULE_10__bootstrap_section_html___default.a, builder: [sfField, simpleTransclusion, condition] },
502-
select: { template: __WEBPACK_IMPORTED_MODULE_11__bootstrap_select_html___default.a, builder: defaults.concat(selectPlaceholder) },
502+
select: { template: __WEBPACK_IMPORTED_MODULE_11__bootstrap_select_html___default.a, builder: [selectPlaceholder].concat(defaults) },
503503
submit: { template: __WEBPACK_IMPORTED_MODULE_12__bootstrap_submit_html___default.a, builder: defaults },
504504
tabarray: { template: __WEBPACK_IMPORTED_MODULE_13__bootstrap_tabarray_html___default.a, builder: [sfField, ngModelOptions, ngModel, array, condition] },
505505
tabs: { template: __WEBPACK_IMPORTED_MODULE_14__bootstrap_tabs_html___default.a, builder: [sfField, ngModelOptions, tabs, condition] },

0 commit comments

Comments
 (0)