mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
reinit modal to add img link after validation of popup
Signed-off-by: tykayn <15d65f2f-0b14-4f70-bf34-e130180ed62b@users.tedomum.net>
This commit is contained in:
parent
a14ccb3ddd
commit
8f850d1c3e
@ -12,9 +12,14 @@
|
||||
<div class="href-preview" *ngIf="choice.url_href">
|
||||
{{ choice.url_href }}
|
||||
</div>
|
||||
<button (click)="openLinkModal(choice)" class="has-no-outline" *ngIf="!choice.url_href || !choice.url_display">
|
||||
<button (click)="openLinkModal(choice)" class="has-no-outline">
|
||||
<img class="icon" src="assets/icons/link.svg" />
|
||||
{{ 'choices.add_link' | translate }}
|
||||
<span *ngIf="!choice.url_href || !choice.url_display">
|
||||
{{ 'choices.add_link' | translate }}
|
||||
</span>
|
||||
<span *ngIf="choice.url_href || choice.url_display">
|
||||
{{ 'SENTENCES.Edit' | translate }}
|
||||
</span>
|
||||
</button>
|
||||
<button class="button delete-date is-block" (click)="StorageService.choicesText.splice(ii, 1)">
|
||||
<img class="icon" src="assets/icons/trash.svg" />
|
||||
|
@ -30,6 +30,8 @@ export class OptionLinkComponent implements OnInit {
|
||||
this.choice_for_modal.url_href = '' + this.url_href;
|
||||
this.choice_for_modal.url_display = '' + this.url_display;
|
||||
this.display_option_dialog = false;
|
||||
this.url_href = '';
|
||||
this.url_display = '';
|
||||
}
|
||||
|
||||
closeModal() {
|
||||
|
Loading…
Reference in New Issue
Block a user