1 import { Component, Input, OnInit } from '@angular/core'
4 selector: 'my-edit-button',
5 styleUrls: [ './button.component.scss' ],
6 templateUrl: './edit-button.component.html'
8 export class EditButtonComponent implements OnInit {
10 @Input() title: string
11 @Input() routerLink: string[] | string = []
12 @Input() responsiveLabel = false
15 // <my-edit-button /> No label
16 if (this.label === undefined && !this.title) {
17 this.title = $localize`Update`
20 // <my-edit-button label /> Use default label
21 if (this.label === '') {
22 this.label = $localize`Update`
25 this.title = this.label