iptdevs-design-system 3.1.827 → 3.1.829
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/atoms/select/select.component.mjs +3 -3
- package/esm2020/lib/core/models/payment/payment-rq.model.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -2
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -665,7 +665,7 @@ SelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
665
665
|
[ngClass]="textClass"
|
|
666
666
|
[disabled]="disabledSel">
|
|
667
667
|
<option *ngFor="let item of data; index as i" [value]="item.code">
|
|
668
|
-
{{ item.name }} {{ item.prefix }}
|
|
668
|
+
{{ item.name ? item.name : item.displayName }} {{ item.prefix }}
|
|
669
669
|
</option>
|
|
670
670
|
</select>
|
|
671
671
|
</div>
|
|
@@ -682,7 +682,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
682
682
|
[ngClass]="textClass"
|
|
683
683
|
[disabled]="disabledSel">
|
|
684
684
|
<option *ngFor="let item of data; index as i" [value]="item.code">
|
|
685
|
-
{{ item.name }} {{ item.prefix }}
|
|
685
|
+
{{ item.name ? item.name : item.displayName }} {{ item.prefix }}
|
|
686
686
|
</option>
|
|
687
687
|
</select>
|
|
688
688
|
</div>
|