Skip to content
Snippets Groups Projects
Commit a523fb5d authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT
Browse files

Merge branch 'fix/21833/develop' into 'develop'

[21833] Sélection par défaut du dossier complet

See merge request maarch/MaarchParapheur!150
parents 15718ccb 26d04d59
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@ export class SearchComponent implements OnInit {
async openPromptProof(item: any) {
const proof: any[] = [
{
name: 'option1',
name: 'proof',
type: 'radio',
label: this.translate.instant('lang.proof'),
value: 'onlyProof',
......@@ -413,18 +413,18 @@ export class SearchComponent implements OnInit {
header: this.translate.instant('lang.download'),
inputs: item.status !== 'HARD_DEL' ? [
{
name: 'option1',
name: 'completeFolder',
type: 'radio',
label: this.translate.instant('lang.proof'),
value: 'onlyProof',
label: this.translate.instant('lang.completeFolder'),
value: 'all',
checked: true
},
{
name: 'option1',
name: 'proof',
type: 'radio',
label: this.translate.instant('lang.completeFolder'),
value: 'all',
},
label: this.translate.instant('lang.proof'),
value: 'onlyProof',
}
] : proof,
buttons: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment