Skip to content

Commit

Permalink
fix the package category import task
Browse files Browse the repository at this point in the history
  • Loading branch information
andponlin committed Aug 20, 2024
1 parent e08fa50 commit 3c05647
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ angular.module('haikudepotserver').controller(
// input for this importation process.

function validateImportDataFile(file, model) {
model.$setValidity('badsize',undefined === file || (file.size > 24 && file.size < IMPORT_SIZE_LIMIT));
model.$setValidity('badsize',undefined === file || !(file.size > 24 && file.size < IMPORT_SIZE_LIMIT));
}

function importDataFileDidChange() {
Expand Down

0 comments on commit 3c05647

Please sign in to comment.