Browse Source

Enable to pass grapheme-mode to EntityEditor.vue

pull/1511/head
Hironsan 3 years ago
parent
commit
a48907eb35
1 changed files with 2 additions and 2 deletions
  1. 4
      frontend/components/tasks/sequenceLabeling/EntityEditor.vue

4
frontend/components/tasks/sequenceLabeling/EntityEditor.vue

@ -9,7 +9,7 @@
:relations="relations"
:relation-labels="relationLabels"
:allow-overlapping="allowOverlapping"
:per-code-point="perCodePoint"
:grapheme-mode="graphemeMode"
@add:entity="handleAddEvent"
@click:entity="handleEntityClickEvent"
@click:relation="updateRelation"
@ -104,7 +104,7 @@ export default Vue.extend({
default: false,
required: false,
},
perCodePoint: {
graphemeMode: {
type: Boolean,
default: false,
},

Loading…
Cancel
Save