Skip to content

Commit

Permalink
Fixed: login button not working on click
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Jan 18, 2024
1 parent ecaaa00 commit 56f2e36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ion-item>

<div class="ion-padding">
<ion-button type="submit" color="primary" fill="outline" expand="block">{{ $t("Login") }}</ion-button>
<ion-button type="submit" color="primary" fill="outline" expand="block" @click="login(form)">{{ $t("Login") }}</ion-button>
</div>
</form>
</div>
Expand Down Expand Up @@ -61,7 +61,7 @@ export default defineComponent({
})
},
mounted() {
this.instanceUrl= this.currentInstanceUrlSaved;
this.instanceUrl = this.currentInstanceUrlSaved;
},
methods: {
login: function () {
Expand Down

0 comments on commit 56f2e36

Please sign in to comment.