From e41a13f01e32f41b487b9421442d6ac5f55c1ba7 Mon Sep 17 00:00:00 2001 From: Joris Tirado Date: Mon, 26 Nov 2018 15:46:28 -0800 Subject: [PATCH] UI-3262: Use correct lower casing lodash method on formatting (#104) --- submodules/strategy/strategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/strategy/strategy.js b/submodules/strategy/strategy.js index 418bbb8..d28f944 100644 --- a/submodules/strategy/strategy.js +++ b/submodules/strategy/strategy.js @@ -1645,7 +1645,7 @@ define(function(require) { // make sure the lunch rule is only valid on days the business is open return _ .chain(item) - .lowerCase() + .toLower() .replace(/^main/, '') .value(); }),