- edit forms for editor and submitter: add new keywords with language
- Publish\IndexController.php: case sensitive relatedIdentifierTypes for later DOI creation
This commit is contained in:
parent
27d95ddd70
commit
8e7960aa8e
3 changed files with 10 additions and 1 deletions
|
@ -538,6 +538,7 @@
|
|||
<tr>
|
||||
<th style="width: 20px;">Keyword</th>
|
||||
<th>Type</th>
|
||||
<th>Language</th>
|
||||
<th style="width: 130px;"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -564,6 +565,9 @@
|
|||
<input v-bind:name="'subjects[' + index +'][type]'" readonly class="form-control"
|
||||
placeholder="[KEYWORD TYPE]" v-model="item.type" v-validate="'required'" />
|
||||
</td>
|
||||
<td>
|
||||
<input v-bind:name="'subjects[' + index +'][language]'" readonly class="form-control" v-model="item.language" v-validate="'required'" />
|
||||
</td>
|
||||
<td>
|
||||
<button v-if="item.id == undefined" class="pure-button button-small is-warning"
|
||||
@click.prevent="removeKeyword(index)">
|
||||
|
|
|
@ -534,6 +534,7 @@
|
|||
<tr>
|
||||
<th style="width: 20px;">Keyword</th>
|
||||
<th>Type</th>
|
||||
<th>Language</th>
|
||||
<th style="width: 130px;"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -560,6 +561,9 @@
|
|||
<input v-bind:name="'subjects[' + index +'][type]'" readonly class="form-control"
|
||||
placeholder="[KEYWORD TYPE]" v-model="item.type" v-validate="'required'" />
|
||||
</td>
|
||||
<td>
|
||||
<input v-bind:name="'subjects[' + index +'][language]'" readonly class="form-control" v-model="item.language" v-validate="'required'" />
|
||||
</td>
|
||||
<td>
|
||||
<button v-if="item.id == undefined" class="pure-button button-small is-warning"
|
||||
@click.prevent="removeKeyword(index)">
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue