From cd884137853cace5ebcda929ddfbc2073a4b6d7f Mon Sep 17 00:00:00 2001 From: houhaoyu Date: Wed, 29 Dec 2021 12:51:31 +0800 Subject: [PATCH] fixed 4fbbd85 from https://gitee.com/houhaoyu/third_party_weex-loader/pulls/24 houhaoyu@huawei.com line break Signed-off-by: houhaoyu Change-Id: I959d93addf47173cf8704ac1bbcf2cd2cabcbf56 --- deps/weex-styler/lib/validator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/weex-styler/lib/validator.js b/deps/weex-styler/lib/validator.js index 188f5d8..707a968 100644 --- a/deps/weex-styler/lib/validator.js +++ b/deps/weex-styler/lib/validator.js @@ -930,7 +930,8 @@ var TRANSITION_PROPERTY_VALIDATOR = function TRANSITION_PROPERTY_VALIDATOR(v) { return { value: null, reason: function reason(k, v, result) { - return 'ERROR: The `' + util.camelCaseToHyphened(k) + '` attribute does not support value `' + v + '` (only CSS attributes support this value).' + return 'ERROR: The `' + util.camelCaseToHyphened(k) + '` attribute does not support value `' + + v + '` (only CSS attributes support this value).' } } } -- Gitee