Skip to content

Commit

Permalink
Merge pull request #187 from BoldGrid/issue-186
Browse files Browse the repository at this point in the history
Fixes Hide SPecial Thanks Attribution capitilization issue.
  • Loading branch information
bwmarkle authored May 4, 2020
2 parents 1035fa8 + e0858a9 commit 8f69283
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ export default {

markup += `<li>
<input id="${ id }" class="attribution-link" type="checkbox" data-attribution="${ setting.id }" ${ checked }>
<label for="${ id }">${ startCase( setting.id ).replace( 'g', 'G' ).replace( 'p', 'P' ) }</label>
<label for="${ id }">${ startCase( setting.id ).replace( 'Wordpress', 'WordPress' ).replace( 'Boldgrid', 'BoldGrid' ) }</label>
</li>`;
} );

Expand Down

0 comments on commit 8f69283

Please sign in to comment.