Fix create bugs (#9606)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
John Olheiser 2020-01-04 20:39:14 -06:00 committed by techknowlogick
parent 03d59bcd1d
commit 08424648ae
2 changed files with 4 additions and 3 deletions

View file

@ -2271,7 +2271,7 @@ function initTemplateSearch() {
const checkTemplate = function () {
const $templateUnits = $('#template_units');
const $nonTemplate = $('#non_template');
if ($repoTemplate.val() !== '') {
if ($repoTemplate.val() !== '' && $repoTemplate.val() !== '0') {
$templateUnits.show();
$nonTemplate.hide();
} else {