added Unspecified license option
This commit is contained in:
parent
331b0c9764
commit
56122f827c
2 changed files with 2 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue