Merge pull request #5817 from sbwalker/dev

resolve UI issue for internal template
This commit is contained in:
Shaun Walker
2025-11-14 13:58:50 -05:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@
private List<Template> _templates; private List<Template> _templates;
private string _template = "-"; private string _template = "-";
private string _minversion = "2.0.0"; private string _minversion = "2.0.0";
private string _type = "External"; private string _type = "";
private string[] _versions; private string[] _versions;
private string _reference = "local"; private string _reference = "local";
private string _location = string.Empty; private string _location = string.Empty;
@@ -185,7 +185,7 @@
else else
{ {
_minversion = "2.0.0"; _minversion = "2.0.0";
_type = "-"; _type = "";
} }
GetLocation(); GetLocation();
} }

View File

@@ -75,7 +75,7 @@
private List<Template> _templates; private List<Template> _templates;
private string _template = "-"; private string _template = "-";
private string _minversion = "2.0.0"; private string _minversion = "2.0.0";
private string _type = "External"; private string _type = "";
private string[] _versions; private string[] _versions;
private string _reference = "local"; private string _reference = "local";
private string _location = string.Empty; private string _location = string.Empty;
@@ -151,7 +151,7 @@
else else
{ {
_minversion = "2.0.0"; _minversion = "2.0.0";
_type = "-"; _type = "";
} }
GetLocation(); GetLocation();
} }