* Fix bug#37892

This commit is contained in:
zenggang
2023-09-01 11:54:08 +00:00
parent 9b16ed0eb3
commit 8ebabe683b
+3 -1
View File
@@ -204,7 +204,9 @@ function onChangeArtifactRepo(event)
{
if(productArtifactRepos[productID][i].id == repoID)
{
$('#filePath').val(productArtifactRepos[productID][i].url);
var url = productArtifactRepos[productID][i].url;
if(url[url.length - 1] != '/') url = url + '/';
$('#filePath').val(url);
datePicker.$.setValue(productArtifactRepos[productID][i].createdDate.substr(0, 10));
}
}