Skip to content

Commit

Permalink
bug fix - only need custom terms string here
Browse files Browse the repository at this point in the history
and DatasetUtil functions were not imported leading to a 500 error on
the template page.
  • Loading branch information
qqmyers committed Feb 3, 2022
1 parent 8294438 commit 2ac1ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/dataset-license-terms.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</ui:fragment>
<ui:fragment rendered="#{empty editMode and empty termsOfUseAndAccess.license}">
<p>
<h:outputText value="#{DatasetUtil:getLicenseName(DatasetPage.workingVersion).concat(' ')}" escape="false"/>
<h:outputText value="#{bundle['license.custom'].concat(' ')}" escape="false"/>
<h:outputText value="#{bundle['file.dataFilesTab.terms.list.license.customterms.txt']}" escape="false"/>
</p>
</ui:fragment>
Expand Down

0 comments on commit 2ac1ee5

Please sign in to comment.