From fd17c29746a0c00211a7ce755a0e8763e4793aa7 Mon Sep 17 00:00:00 2001 From: lucy-vxt <67889898+lucy-vxt@users.noreply.github.com> Date: Thu, 12 May 2022 12:52:43 +1200 Subject: [PATCH] Fixing bug with bootstrap-sass. (#291) Newer versions of bootstrap-sass-official are not compatible with the version of sass used in this project as it includes changes to the way division works. This issue is documented in these issues; https://github.com/twbs/bootstrap-sass/issues/1231 and https://github.com/twbs/bootstrap-sass/issues/1230. Making the version of bootstrap-sass required more specific stops the breaking upgrade. --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 95aad92d1..bfd45904b 100644 --- a/bower.json +++ b/bower.json @@ -3,7 +3,7 @@ "private": true, "dependencies": { "angular": "1.5.9", - "bootstrap-sass-official": "^3.3.7", + "bootstrap-sass-official": "~3.3.7", "angular-animate": "1.5.9", "angular-messages": "~1.5.9", "angular-route": "~1.5.9",