Sfoglia il codice sorgente

Merge branch 'master' into edit

# Conflicts:
#	src/main/kotlin/com/server/alb/controllers/BugController.kt
#	src/main/resources/templates/edit_bug.html
#	src/main/resources/templates/edit_proj.html
#	src/main/resources/templates/edit_user.html
athrainsky 1 anno fa
parent
commit
d2907f8fa9

+ 1 - 2
src/main/kotlin/com/server/alb/services/BugValidationService.kt

@@ -7,10 +7,9 @@ import org.springframework.stereotype.Service
 
 @Service
 class BugValidationService {
-
     companion object {
         fun isValid(bug: ListBug?): Boolean {
-            return (bug != null && StringUtils.isNotBlank(bug.description) && StringUtils.isNotBlank(bug.link))
+            return (bug != null && StringUtils.isNotEmpty(bug.description) && StringUtils.isNotBlank(bug.link))
         }
     }
 

+ 4 - 2
src/main/resources/templates/add_bug.html

@@ -22,7 +22,8 @@
                 <td><select th:field="*{platform}">
                     <option th:each="platform: ${platform}" th:value="${platform.id}" th:text="${platform.name}"/>
                 </select></td>
-                <td th:if="${#fields.hasErrors('platform')}" th:errors="*{platform}" style="color:red">Platform Error</td>
+                <td th:if="${#fields.hasErrors('platform')}" th:errors="*{platform}" style="color:red">Platform Error
+                </td>
             </tr>
             <tr>
                 <td>Link Good Day:</td>
@@ -40,7 +41,8 @@
             <tr>
                 <td>Bug:</td>
                 <td><input type="text" th:field="*{description}" class="form-control"/></td>
-                <td th:if="${#fields.hasErrors('description')}" th:errors="*{description}" style="color:red">Bug Error</td>
+                <td th:if="${#fields.hasErrors('description')}" th:errors="*{description}" style="color:red">Bug Error
+                </td>
             </tr>
             <tr>
                 <td>Link Image:</td>