Skip to content

Commit

Permalink
fix(admin-ui): Fix Channel dropdown auto-select in Safari (#1040)
Browse files Browse the repository at this point in the history
Fixes #1036
  • Loading branch information
kata-kas authored Aug 18, 2021
1 parent 2441ce7 commit aee8416
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
formControlName="defaultTaxZoneId"
[vdrDisabled]="!(updatePermission | hasPermission)"
>
<option selected value style="display: none"></option>
<option *ngFor="let zone of zones$ | async" [value]="zone.id">{{ zone.name }}</option>
</select>
</vdr-form-field>
Expand All @@ -95,6 +96,7 @@
formControlName="defaultShippingZoneId"
[vdrDisabled]="!(updatePermission | hasPermission)"
>
<option selected value style="display: none"></option>
<option *ngFor="let zone of zones$ | async" [value]="zone.id">{{ zone.name }}</option>
</select>
</vdr-form-field>
Expand Down

0 comments on commit aee8416

Please sign in to comment.