mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
solved lint issues, added typedoc, fixed lgtm warnings
This commit is contained in:
@@ -19,12 +19,16 @@ export class StringValueInputComponent extends ValueInputComponent<string> {
|
||||
* The current value of the string
|
||||
*/
|
||||
value: string;
|
||||
|
||||
/**
|
||||
* Initial value of the field
|
||||
*/
|
||||
@Input() initialValue;
|
||||
|
||||
ngOnInit() {
|
||||
this.value = this.initialValue;
|
||||
}
|
||||
|
||||
|
||||
setValue(value) {
|
||||
this.value = value;
|
||||
this.updateValue.emit(value)
|
||||
|
Reference in New Issue
Block a user