Merge tag '1.7.27.1' into develop

Release v1.7.27.1
This commit is contained in:
Andy Miller
2022-01-12 15:26:38 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.7.27');
define('GRAV_VERSION', '1.7.27.1');
define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
define('GRAV_TESTING', false);

View File

@@ -100,7 +100,7 @@ trait AssetUtilsTrait
}
// Double check last character being
if ($type !== self::CSS_ASSET) {
if ($type === self::JS_ASSET || $type === self::JS_MODULE_ASSET) {
$file = rtrim($file, ' ;') . ';';
}