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 { ...@@ -401,7 +401,7 @@ export class SearchComponent implements OnInit {
async openPromptProof(item: any) { async openPromptProof(item: any) {
const proof: any[] = [ const proof: any[] = [
{ {
name: 'option1', name: 'proof',
type: 'radio', type: 'radio',
label: this.translate.instant('lang.proof'), label: this.translate.instant('lang.proof'),
value: 'onlyProof', value: 'onlyProof',
...@@ -413,18 +413,18 @@ export class SearchComponent implements OnInit { ...@@ -413,18 +413,18 @@ export class SearchComponent implements OnInit {
header: this.translate.instant('lang.download'), header: this.translate.instant('lang.download'),
inputs: item.status !== 'HARD_DEL' ? [ inputs: item.status !== 'HARD_DEL' ? [
{ {
name: 'option1', name: 'completeFolder',
type: 'radio', type: 'radio',
label: this.translate.instant('lang.proof'), label: this.translate.instant('lang.completeFolder'),
value: 'onlyProof', value: 'all',
checked: true checked: true
}, },
{ {
name: 'option1', name: 'proof',
type: 'radio', type: 'radio',
label: this.translate.instant('lang.completeFolder'), label: this.translate.instant('lang.proof'),
value: 'all', value: 'onlyProof',
}, }
] : proof, ] : proof,
buttons: [ 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