From 1770acdfafd94a4ef8f6e4abd50a86732b6088f2 Mon Sep 17 00:00:00 2001 From: JamesStallworthy Date: Tue, 6 Oct 2020 18:48:36 +0100 Subject: [PATCH] PR5719 - Resolved issue with example, missing comma for array --- docs/en/UI/AspNetCore/Client-Side-Package-Management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/UI/AspNetCore/Client-Side-Package-Management.md b/docs/en/UI/AspNetCore/Client-Side-Package-Management.md index 624507dd0e..77dee7a383 100644 --- a/docs/en/UI/AspNetCore/Client-Side-Package-Management.md +++ b/docs/en/UI/AspNetCore/Client-Side-Package-Management.md @@ -94,7 +94,7 @@ An example mapping configuration is shown below: mappings: { "@node_modules/bootstrap/dist/css/bootstrap.css": "@libs/bootstrap/css/", "@node_modules/bootstrap/dist/js/bootstrap.bundle.js": "@libs/bootstrap/js/", - "@node_modules/bootstrap-datepicker/dist/locales/*.*": "@libs/bootstrap-datepicker/locales/" + "@node_modules/bootstrap-datepicker/dist/locales/*.*": "@libs/bootstrap-datepicker/locales/", "@node_modules/bootstrap-v4-rtl/dist/**/*": "@libs/bootstrap-v4-rtl/dist/" } ````