Merge "Field 'version' has to be string"

This commit is contained in:
Jenkins 2015-06-25 16:31:17 +00:00 committed by Gerrit Code Review
commit 381b42aeec
1 changed files with 3 additions and 3 deletions

View File

@ -660,14 +660,14 @@
} }
}, { }, {
'version': { 'version': {
'@class': fields.number.extend({}, { '@class': fields.string.extend({}, {
'@enum': [2.0], '@enum': ['2.0'],
'@meta': { '@meta': {
'index': 2, 'index': 2,
'panelIndex': 0, 'panelIndex': 0,
'row': 1 'row': 1
}, },
'@default': 2.0 '@default': '2.0'
}) })
}, },
'name': { 'name': {