Skip to content

Commit

Permalink
Merge pull request #65 from StudioQi/fix-ssl
Browse files Browse the repository at this point in the history
send key.name instead of id
  • Loading branch information
PierrePaul committed Aug 20, 2015
2 parents e257029 + 05de9a9 commit d0b5089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jeto/templates/partials/domains/form.html
Expand Up @@ -41,7 +41,7 @@
<label for="name">{{ _('SSL key') }}</label>
<select name="ssl_key" id="ssl_key" ng-model="domainInfo.ssl_key" class="form-control" ui-select2>
<option value="">--- {{ _('None') }} ---</option>
<option ng-repeat="key in ssl_keys track by key.id" value="[[ key.id ]]">[[ key.name ]]</option>
<option ng-repeat="key in ssl_keys track by key.id" value="[[ key.name ]]">[[ key.name ]]</option>
</select>
</div>
<div class="form-group">
Expand Down

0 comments on commit d0b5089

Please sign in to comment.