added Unspecified license option

This commit is contained in:
bill bittner 2017-10-27 10:58:08 -07:00
parent 331b0c9764
commit 56122f827c
2 changed files with 2 additions and 1 deletions

View file

@ -123,7 +123,7 @@ module.exports = {
}
// provide default for license
if (license === null || license.trim() === '') {
license = 'All Rights Reserved';
license = ' '; // default to empty string
}
// create the publish params
const publishParams = {

View file

@ -20,6 +20,7 @@
<label for="publish-license" class="label">License:</label>
</div><div class="column column--7 column--sml-10">
<select type="text" id="publish-license" class="select select--primary">
<option value=" ">Unspecified</option>
<option value="Public Domain">Public Domain</option>
<option value="Creative Commons">Creative Commons</option>
</select>