Skip to content

Commit

Permalink
#1209: fix multi file input required (#1211)
Browse files Browse the repository at this point in the history
  • Loading branch information
lehju authored Jan 15, 2024
1 parent 1825af0 commit ef857df
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default defineComponent({
const hint = !!maxTotalSize ?
"Es dürfen maximal " + maxFiles + " Dateien mit einer Gesamtgröße von " + maxTotalSize + " MB hochgeladen werden" :
"Es dürfen maximal " + maxFiles + " Dateien hochgeladen werden";
let rules: any[] = [];
let rules = props.rules ? props.rules : true;
const apiEndpoint = inject<string>('apiEndpoint');
const taskServiceApiEndpoint = inject<string>('taskServiceApiEndpoint');
Expand Down Expand Up @@ -365,9 +365,6 @@ export default defineComponent({
uuid = uuidv4();
}
}
if (!!props.rules && props.rules.length > 0) {
rules.push(props.rules);
}
rules.push(() => documents.value.length <= maxFiles || 'Es dürfen maximal ' + maxFiles + ' Dateien übergeben werden');
if (!!maxTotalSize) {
rules.push(() => validateTotalSize() <= maxTotalSize || 'Die Gesamtgröße aller Dateien darf ' + maxTotalSize + ' MB nicht überschreiten');
Expand Down

0 comments on commit ef857df

Please sign in to comment.