Skip to content

Commit a781624

Browse files
committed
[refactoring] Fix unused parameter warning
1 parent 27726ee commit a781624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/common/EditableLabelSelect.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
}
3939
},
4040
watch: {
41-
editValue: function (newTeamName) {
41+
editValue: function (val) {
4242
this.edit = false;
43-
this.callback(this.editValue)
43+
this.callback(val);
4444
}
4545
}
4646
}

0 commit comments

Comments
 (0)