Skip to content

Commit

Permalink
fix(controller): the project description cannot be set to empty (#1268)
Browse files Browse the repository at this point in the history
Fix bugs where the project description cannot be set to empty
  • Loading branch information
dreamlandliu authored Sep 21, 2022
1 parent f5c50c9 commit 1959fe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<if test="project.projectName != null and project.projectName != ''">
project_name = #{project.projectName},
</if>
<if test="project.description != null and project.description != ''">
<if test="project.description != null">
project_description = #{project.description},
</if>
<if test="project.ownerId != null">
Expand Down

0 comments on commit 1959fe5

Please sign in to comment.