fix/フォーム内に入る / 入りそうなボタンに type="button" を付ける #270
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
fix: #231
PR Type
Bug fix
Description
type="button"
を追加し、フォーム送信を防止。NewRequestFileForm.vue
、NewRequestTargets.vue
、NewTransactionTarget.vue
、RequestFiles.vue
、FloatingMenu.vue
、InputSelectSingle.vue
、MarkdownTextarea.vue
の各ファイルで修正を実施。Changes walkthrough 📝
NewRequestFileForm.vue
Add type attribute to button in NewRequestFileForm
src/components/newRequest/NewRequestFileForm.vue
type="button"
added to a button element.NewRequestTargets.vue
Add type attribute to button in NewRequestTargets
src/components/newRequest/NewRequestTargets.vue
type="button"
added to a button element.NewTransactionTarget.vue
Add type attribute to button in NewTransactionTarget
src/components/newTransaction/NewTransactionTarget.vue
type="button"
added to a button element.RequestFiles.vue
Add type attribute to button in RequestFiles
src/components/requestDetail/RequestFiles.vue
type="button"
added to a button element.FloatingMenu.vue
Add type attribute to button in FloatingMenu
src/components/shared/FloatingMenu.vue
type="button"
added to a button element.InputSelectSingle.vue
Add type attribute to buttons in InputSelectSingle
src/components/shared/InputSelectSingle.vue
type="button"
added to multiple button elements.MarkdownTextarea.vue
Add type attribute to buttons in MarkdownTextarea
src/components/shared/MarkdownTextarea.vue
type="button"
added to multiple button elements.