update changelog

This commit is contained in:
Mathieu Jaumotte 2021-12-10 10:12:44 +01:00
parent 5a2e6c0969
commit cf219198ca
2 changed files with 7 additions and 4 deletions

View File

@ -23,6 +23,9 @@ and this project adheres to
* [activity] create work if a work with same social action is not associated to the activity * [activity] create work if a work with same social action is not associated to the activity
* [visgraph] improve and fix bugs on vis-network relationship graph * [visgraph] improve and fix bugs on vis-network relationship graph
* [bugfix] posting of birth- and deathdate through api fixed. * [bugfix] posting of birth- and deathdate through api fixed.
* [suggestions] improve suggestions lists
* [badge-entity] design coherency between badge-person and 3 kinds of badge-thirdparty
* [AddPersons] suggestions row are clickable, not only checkbox
## Test releases ## Test releases

View File

@ -1,15 +1,15 @@
<template> <template>
<div class="list-item" :class="{ checked: isChecked }"> <div class="list-item" :class="{ checked: isChecked }">
<label> <label>
<div> <div>
<input <input
v-bind:type="type" v-bind:type="type"
v-model="selected" v-model="selected"
name="item" name="item"
v-bind:id="item" v-bind:id="item"
v-bind:value="setValueByType(item, type)" /> v-bind:value="setValueByType(item, type)" />
</div> </div>
<suggestion-person <suggestion-person
v-if="item.result.type === 'person'" v-if="item.result.type === 'person'"
@ -25,7 +25,7 @@
v-if="item.result.type === 'user'" v-if="item.result.type === 'user'"
v-bind:item="item"> v-bind:item="item">
</suggestion-user> </suggestion-user>
</label> </label>
</div> </div>
</template> </template>