summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/components/item_title.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/work_items/components/item_title.vue')
-rw-r--r--app/assets/javascripts/work_items/components/item_title.vue12
1 files changed, 1 insertions, 11 deletions
diff --git a/app/assets/javascripts/work_items/components/item_title.vue b/app/assets/javascripts/work_items/components/item_title.vue
index 79840cc4f0f..232510b108d 100644
--- a/app/assets/javascripts/work_items/components/item_title.vue
+++ b/app/assets/javascripts/work_items/components/item_title.vue
@@ -2,12 +2,9 @@
import { escape } from 'lodash';
import { __ } from '~/locale';
-import { WI_TITLE_TRACK_LABEL } from '../constants';
-
export default {
- WI_TITLE_TRACK_LABEL,
props: {
- initialTitle: {
+ title: {
type: String,
required: false,
default: '',
@@ -23,11 +20,6 @@ export default {
default: false,
},
},
- data() {
- return {
- title: this.initialTitle,
- };
- },
methods: {
getSanitizedTitle(inputEl) {
const { innerText } = inputEl;
@@ -50,7 +42,6 @@ export default {
<h2
class="gl-font-weight-normal gl-sm-font-weight-bold gl-my-5 gl-display-inline-block"
:class="{ 'gl-cursor-not-allowed': disabled }"
- data-testid="title"
aria-labelledby="item-title"
>
<span
@@ -59,7 +50,6 @@ export default {
role="textbox"
:aria-label="__('Title')"
:data-placeholder="placeholder"
- :data-track-label="$options.WI_TITLE_TRACK_LABEL"
:contenteditable="!disabled"
class="gl-pseudo-placeholder"
@blur="handleBlur"