Skip to content

Commit eaa24ea

Browse files
committed
fix clusterissuer name
1 parent 6a87dd4 commit eaa24ea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/components/apps/new.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,9 +1290,7 @@ export default {
12901290
methods: {
12911291
loadClusterIssuers(){
12921292
axios.get('/api/config/clusterissuers').then(response => {
1293-
for (let i = 0; i < response.data.length; i++) {
1294-
this.letsecryptClusterIssuer = response.data[i].id;
1295-
}
1293+
this.letsecryptClusterIssuer = response.data[0].id;
12961294
});
12971295
},
12981296
loadTemplate(catalogId, template) {

0 commit comments

Comments
 (0)