From 2f9f823330f023861a737c9610e90586e0828630 Mon Sep 17 00:00:00 2001 From: Mike Casas Date: Tue, 18 Aug 2020 17:02:40 -0400 Subject: [PATCH] Delete module pluralization in the location display. --- Oqtane.Client/Modules/Admin/ModuleCreator/Index.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/ModuleCreator/Index.razor b/Oqtane.Client/Modules/Admin/ModuleCreator/Index.razor index e42c394f..b3de9742 100644 --- a/Oqtane.Client/Modules/Admin/ModuleCreator/Index.razor +++ b/Oqtane.Client/Modules/Admin/ModuleCreator/Index.razor @@ -105,11 +105,11 @@ string[] path = systeminfo["serverpath"].Split('\\'); if (_template == "internal") { - _location = string.Join("\\", path, 0, path.Length - 1) + "\\Oqtane.Client\\Modules\\" + _owner + "." + _module + "s"; + _location = string.Join("\\", path, 0, path.Length - 1) + "\\Oqtane.Client\\Modules\\" + _owner + "." + _module; } else { - _location = string.Join("\\", path, 0, path.Length - 2) + "\\" + _owner + "." + _module + "s"; + _location = string.Join("\\", path, 0, path.Length - 2) + "\\" + _owner + "." + _module; } } }