From 4e1d6a1afe5f1e44e3b86cf2bf42154eac607479 Mon Sep 17 00:00:00 2001 From: Steven Orvell Date: Mon, 1 Apr 2019 17:44:02 -0700 Subject: [PATCH] Address review feedback via comment. --- lib/mixins/property-effects.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index cdff1f5b45..05a41e0492 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -728,6 +728,8 @@ function setupCompoundStorage(node, binding) { // Configure properties with their literal parts if (binding.literal && binding.kind == 'property') { // Note, className needs style scoping so this needs wrapping. + // We may also want to consider doing this for `textContent` and + // `innerHTML`. if (target === 'className') { node = wrap(node); }