Skip to content

Commit

Permalink
fix doc comments for QuestionFileModel
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed Oct 10, 2024
1 parent fc061be commit c8cfd8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/survey-core/src/question_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,6 @@ export class QuestionFileModelBase extends Question {
}
}

/**
* A class that describes the File Upload question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/file-upload/ (linkStyle))
*/

export class QuestionFilePage extends Base {
private static pageCounter = 0;
private static getId() {
Expand All @@ -164,6 +158,12 @@ export class QuestionFilePage extends Base {
return this.question.cssClasses.page;
}
}

/**
* A class that describes the File Upload question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/file-upload/ (linkStyle))
*/
export class QuestionFileModel extends QuestionFileModelBase {
@property() isDragging: boolean = false;
@propertyArray({}) public previewValue: any[];
Expand Down

0 comments on commit c8cfd8f

Please sign in to comment.