Skip to content

Commit

Permalink
Fix action button(s) on search result table
Browse files Browse the repository at this point in the history
  • Loading branch information
clorenz committed Jul 8, 2024
1 parent 6b0b453 commit 8ca538c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.github.dbmdz.cudami</groupId>
<artifactId>cudami</artifactId>
<version>9.2.0-RC3</version>
<version>9.2.0-RC4</version>
<packaging>jar</packaging>

<name>DigitalCollections: cudami</name>
Expand Down
5 changes: 2 additions & 3 deletions src/main/resources/templates/identifiables/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,10 @@ <h1 th:text="#{page.title.searchresult}">Search result</h1>

function formatActionsIdentifiables(value, row) {
/*[+
const baseUrl = [[@{'/identifiables'}]] + '/' + row.uuid;
const baseUrl = [[@{'/identifiables/uuid'}]] + '/' + row.uuid;
+]*/
return [
renderViewAction(baseUrl),
renderEditAction(baseUrl)
renderViewAction(baseUrl)
].join(' ');
}

Expand Down

0 comments on commit 8ca538c

Please sign in to comment.