Skip to content

Commit

Permalink
chore: version release
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Astappiev <[email protected]>
  • Loading branch information
astappiev committed Feb 26, 2024
1 parent e102e84 commit c4ec966
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>de.l3s</groupId>
<artifactId>learnweb</artifactId>
<!-- Because Tomcat treats a version as String, we need to use zero paddings to make sure v10 is newer than v9 -->
<version>3.25.03</version>
<version>3.25.04</version>
<packaging>war</packaging>

<name>Learnweb</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@
<div faces:id="edit_pictures" class="col-12 col-md-6">
<div class="d-flex justify-content-between align-items-center mb-3">
<h5>Pictures</h5>
<p:fileUpload listener="#{glossaryBean.handleFileUpload}" mode="simple" skinSimple="true" multiple="true" auto="true" update=":edit_pictures"/>
<p:fileUpload listener="#{glossaryBean.handleFileUpload}" mode="simple" skinSimple="true" multiple="true" auto="true" update="@parent"/>
</div>

<p:carousel value="#{glossaryBean.formEntry.pictures}" var="pic" rendered="#{not empty glossaryBean.formEntry.pictures}"
numVisible="#{glossaryBean.formEntry.picturesCount > 3 ? 3 : glossaryBean.formEntry.picturesCount}">
<div class="d-flex flex-column align-items-center">
<img src="#{pic.getResourceUrl(glossaryBean.glossaryResource.id)}" class="d-block w-50 rounded" alt="entry picture"/>

<p:commandLink action="#{glossaryBean.handleDeletePicture(pic)}" title="#{msg.delete}" update=":edit_pictures" process="@this">
<p:commandLink action="#{glossaryBean.handleDeletePicture(pic)}" title="#{msg.delete}" update="edit_pictures" process="@this">
<i class="fas fa-fw fa-trash-alt text-danger" aria-hidden="true"></i>
</p:commandLink>
</div>
Expand Down

0 comments on commit c4ec966

Please sign in to comment.