added autocompletes for labels, relations

This commit is contained in:
zadam
2020-05-28 23:59:08 +02:00
parent 5aaa429203
commit 6a957eff17
8 changed files with 201 additions and 68 deletions

View File

@@ -85,7 +85,7 @@ function formatValueWithWhitespace(val) {
}
function formatLabel(label) {
let str = "@" + formatValueWithWhitespace(label.name);
let str = "#" + formatValueWithWhitespace(label.name);
if (label.value !== "") {
str += "=" + formatValueWithWhitespace(label.value);