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.
PR Type
enhancement, formatting
Description
defineEmits
の型定義を簡略化し、可読性を向上させました。forEach
をfor...of
ループに置き換え、コードの明確さを改善しました。any
型をunknown
型に置き換えました。Changes walkthrough 📝
4 files
GroupName.vue
Refactor import order in GroupName component
src/components/groupDetail/GroupName.vue
RequestTags.vue
Refactor import order in RequestTags component
src/components/requestDetail/RequestTags.vue
RequestTargets.vue
Refactor import order in RequestTargets component
src/components/requestDetail/RequestTargets.vue
AdminPage.vue
Refactor import order in AdminPage component
src/pages/AdminPage.vue
8 files
ModalWrapper.vue
Simplify defineEmits in ModalWrapper component
src/components/modal/ModalWrapper.vue
defineEmits
type definition for better readability.StatusChangeModal.vue
Refactor StatusChangeModal component for clarity
src/components/modal/StatusChangeModal.vue
defineEmits
type definition.NewRequestFileForm.vue
Improve file handling logic in NewRequestFileForm
src/components/newRequest/NewRequestFileForm.vue
defineEmits
type definition.forEach
with afor...of
loop for better readability.NewRequestTag.vue
Simplify defineEmits in NewRequestTag component
src/components/newRequest/NewRequestTag.vue
defineEmits
type definition for better readability.NewRequestTargets.vue
Simplify defineEmits in NewRequestTargets component
src/components/newRequest/NewRequestTargets.vue
defineEmits
type definition for better readability.NewTransactionTarget.vue
Refactor NewTransactionTarget component for clarity
src/components/newTransaction/NewTransactionTarget.vue
defineEmits
type definition.InputSelectMultiple.vue
Improve type safety in InputSelectMultiple component
src/components/shared/InputSelectMultiple.vue
any
type withunknown
for better type safety.InputSelectSingle.vue
Improve type safety in InputSelectSingle component
src/components/shared/InputSelectSingle.vue
any
type withunknown
for better type safety.