Skip to content

Commit

Permalink
chore(edit-content): disable strict #29875
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Oct 23, 2024
1 parent e252400 commit 5fe8784
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
type="text"
data-testId="editor-file-name" />
<div class="error-message">
@if (nameField) {
@let error = store.error();
@if (error) {
<small class="p-invalid" data-testId="error-msg">
{{ error | dm: [store.allowFiles()] }}
</small>
} @else {
<dot-field-validation-message
[field]="nameField"
[patternErrorMessage]="'dot.file.field.error.type.file.not.extension'"
Expand Down
2 changes: 1 addition & 1 deletion core-web/libs/edit-content/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true
"strict": false
},
"files": [],
"include": [],
Expand Down

0 comments on commit 5fe8784

Please sign in to comment.