mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
Merged dynamic form module
This commit is contained in:
10
src/app/shared/form/builder/parsers/series-field-parser.ts
Normal file
10
src/app/shared/form/builder/parsers/series-field-parser.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { FormFieldModel } from '../models/form-field.model';
|
||||
|
||||
import { ConcatFieldParser } from './concat-field-parser';
|
||||
|
||||
export class SeriesFieldParser extends ConcatFieldParser {
|
||||
|
||||
constructor(protected configData: FormFieldModel, protected initFormValues, protected readOnly: boolean) {
|
||||
super(configData, initFormValues, readOnly, ';');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user