Skip to content

Commit

Permalink
Refs #81 - fixed some issues.
Browse files Browse the repository at this point in the history
build.gradle: updated app version.
notice-message: changes × to X.
product/index view: fixed large to small on image variable.
  • Loading branch information
cbmarcum committed Nov 10, 2019
1 parent 01ec9fe commit b271306
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apply plugin: 'maven'
apply plugin: 'signing'


version "3.3.16.2" // added needed updates from master after branch created
version "3.3.16.3" // added needed updates from master after branch created
group "net.codebuilders"
description 'MyBusiness - a Grails 3.3 plugin for E-Commerce'
mainClassName = 'net.codebuilders.mybusiness.Application'
Expand Down
2 changes: 1 addition & 1 deletion grails-app/views/common/_notice-message.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<g:each in="${noticeList}" status="i" var="noticeInstance">
<div class="alert alert-info alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span
aria-hidden="true">&times;</span></button>
aria-hidden="true">X</span></button>
<p>
${noticeInstance.longDescription.encodeAsRaw()}
</p>
Expand Down
2 changes: 1 addition & 1 deletion grails-app/views/product/index.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</g:if>
<g:else>
<g:set var="large" value="${noImageLarge}"/>
<g:set var="large" value="${noImageSmall}"/>
<g:set var="small" value="${noImageSmall}"/>
</g:else>
<tr>
<td width="160px">
Expand Down

0 comments on commit b271306

Please sign in to comment.