Closed Futadaruma closed 2 months ago
⏱️ Estimated effort to review: 1 🔵⚪⚪⚪⚪ |
🧪 No relevant tests |
🔒 No security concerns identified |
⚡ No key issues to review |
Category | Suggestion | Score |
Enhancement |
URL形式のバリデーションを追加することを提案します。___ **プレースホルダーの値がURL形式であることを示していますが、ユーザーが無効なURLを入力する可能性があります。URLの形式を検証するためのバリデーションロジックを追加することをお勧めします。** [src/pages/ContestEdit.vue [127-130]](https://github.com/traPtitech/traPortfolio-Dashboard/pull/360/files#diff-6b345b9b3a019b15846536d31ccad1be7489f3dcc49e2f18453e8701556194beR127-R130) ```diff Suggestion importance[1-10]: 8Why: Adding URL validation logic is a significant improvement that enhances the user experience by ensuring that only valid URLs are submitted. This suggestion addresses a potential issue where users might input invalid URLs, thus improving the robustness of the form. | 8 |
User description
close #294 コンテスト・プロジェクト編集画面にplaceholderを追加した
PR Type
enhancement
Description
placeholder
を追加し、ユーザーがURLを入力しやすくしました。placeholder
を追加しました。Changes walkthrough 📝
ContestEdit.vue
コンテスト編集画面にリンクフィールドのプレースホルダーを追加
src/pages/ContestEdit.vue - `placeholder`属性をリンク入力フィールドに追加 - `placeholder`の値は"https://"に設定
Project.vue
プロジェクト画面にリンクフィールドのプレースホルダーを追加
src/pages/Project.vue - `placeholder`属性をリンク入力フィールドに追加 - `placeholder`の値は"https://"に設定