-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At previous change was added the native type equals to submit to all buttons, but at some buttons the click action stopped to work. The click action was added again. Signed-off-by: Vitor Mattos <[email protected]>
- Loading branch information
1 parent
8857a3c
commit ad95c43
Showing
5 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
<template #actions> | ||
<NcButton :disabled="hasLoading" | ||
native-type="submit" | ||
@click="send()" | ||
type="primary"> | ||
Check warning on line 20 in src/views/CreatePassword.vue GitHub Actions / NPM lint
|
||
<template #icon> | ||
<NcLoadingIcon v-if="hasLoading" :size="20" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,7 @@ | |
<template v-if="Object.keys(certificateData).length === 0" #actions> | ||
<NcButton :disabled="hasLoading" | ||
native-type="submit" | ||
@click="send()" | ||
type="primary"> | ||
Check warning on line 89 in src/views/ReadCertificate.vue GitHub Actions / NPM lint
|
||
<template #icon> | ||
<NcLoadingIcon v-if="hasLoading" :size="20" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
<NcButton :disabled="!canSave" | ||
:class="hasLoading ? 'btn-load loading primary btn-confirm' : 'primary btn-confirm'" | ||
native-type="submit" | ||
@click="send()" | ||
type="primary"> | ||
Check warning on line 26 in src/views/ResetPassword.vue GitHub Actions / NPM lint
|
||
<template #icon> | ||
<NcLoadingIcon v-if="hasLoading" :size="20" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters