From 9ee57dd2ef4e4a1eaa2c26a15c16548c77f6b33b Mon Sep 17 00:00:00 2001 From: Mohit Bagra Date: Mon, 19 Sep 2016 15:06:59 -0400 Subject: [PATCH] Update extension manifest to have right work item field input schema --- vss-extension.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vss-extension.json b/vss-extension.json index 1d660f0..3de8d07 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -1,7 +1,7 @@ { "manifestVersion": 1, "id": "color-control", - "version": "0.1.0", + "version": "0.1.1", "name": "Color Form Control", "description": "The example we built adds color to picklists and allows user customization through labels.", "publisher": "", @@ -82,8 +82,12 @@ { "id": "FieldName", "description": "The field associated with the control.", + "type": "WorkItemField", + "properties": { + "workItemFieldTypes": ["Integer"] + }, "validation": { - "dataType": "Field", + "dataType": "String", "isRequired": true } },