Skip to content

Commit

Permalink
config tweak (#531)
Browse files Browse the repository at this point in the history
Co-authored-by: Andi Braimllari <>
  • Loading branch information
AndiBraimllari authored Jan 5, 2025
1 parent 3cee928 commit 4c500f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "1.1mb",
"maximumError": "1.1mb"
"maximumWarning": "1.5mb",
"maximumError": "1.5mb"
},
{
"type": "anyComponentStyle",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export class DocumentUploadComponent implements OnDestroy {
if (fileList && fileList.length === 1) {
const file: File = fileList[0];
const fileSize = file.size / (1024 * 1024);
if (fileSize > 20) {
if (fileSize > 30) {
alert(
'Dokumenti është tepër i madh. Zgjidhni një dokument më të vogel se 20 MB.'
'Dokumenti është tepër i madh. Zgjidhni një dokument më të vogel se 30 MB.'
);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Korrektor për gjuhën shqipe." />
<meta name="description" content="Korrigjues për gjuhën shqipe." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>penda</title>
<base href="/" />
Expand Down

0 comments on commit 4c500f9

Please sign in to comment.