Skip to content

Commit e0570f6

Browse files
committed
fix
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent d8d25b1 commit e0570f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/src/views/compute/wizard/OwnershipSelection.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ export default {
188188
this.loading = false
189189
})
190190
},
191-
increamentAndGetRequestToken () {
191+
incrementAndGetRequestToken () {
192192
this.requestToken += 1
193193
return this.requestToken
194194
},
195195
fetchAccounts () {
196196
this.loading = true
197-
const currentToken = this.increamentAndGetRequestToken()
197+
const currentToken = this.incrementAndGetRequestToken()
198198
api('listAccounts', {
199199
response: 'json',
200200
domainId: this.selectedDomain,
@@ -229,7 +229,7 @@ export default {
229229
},
230230
fetchProjects () {
231231
this.loading = true
232-
const currentToken = this.increamentAndGetRequestToken()
232+
const currentToken = this.incrementAndGetRequestToken()
233233
api('listProjects', {
234234
response: 'json',
235235
domainId: this.selectedDomain,

0 commit comments

Comments
 (0)