We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When saving the image after editing a team the images small and medium need to be set to null. Otherwise those arent automatically set in the backend.
small
medium
null
Reason: In V1 the backend checks wether or not the large image is != null. In V2 the medium and small are checked instead.
!= null
Relevant files:
src/main/java/de/otto/teamdojo/service/impl/ImageServiceImpl.java
src/main/java/com/iteratec/teamdojo/service/impl/custom/ExtendedImageServiceImpl.java
src/main/webapp/app/custom/teams/teams-edit/teams-edit.component.ts
The text was updated successfully, but these errors were encountered:
Issue #100: Set small and medium sized image to null before saving
061a0c9
#100: Refactor ImageService Class
d4d5563
Signed-off-by: Rami Souai <[email protected]>
Weltraumschaf
No branches or pull requests
When saving the image after editing a team the images
small
andmedium
need to be set tonull
. Otherwise those arent automatically set in the backend.Reason: In V1 the backend checks wether or not the large image is
!= null
. In V2 themedium
andsmall
are checked instead.Relevant files:
src/main/java/de/otto/teamdojo/service/impl/ImageServiceImpl.java
Line 60 (V1)src/main/java/com/iteratec/teamdojo/service/impl/custom/ExtendedImageServiceImpl.java
Line 65 (V2)src/main/webapp/app/custom/teams/teams-edit/teams-edit.component.ts
Line 199 (V2)The text was updated successfully, but these errors were encountered: