Skip to content

Commit 8ad3494

Browse files
committed
Updates exposed comments
1 parent 7b77183 commit 8ad3494

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

packages/core/src/js/feedback/FeedbackWidgetManager.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,35 +52,35 @@ abstract class FeedbackManager {
5252
}
5353

5454
/**
55-
*
55+
* Provides functionality to show and hide the feedback widget.
5656
*/
5757
export class FeedbackWidgetManager extends FeedbackManager {
5858
/**
59-
*
59+
* Returns the name of the feedback component.
6060
*/
6161
protected static get _feedbackComponentName(): string {
6262
return 'FeedbackWidget';
6363
}
6464
}
6565

6666
/**
67-
*
67+
* Provides functionality to show and hide the feedback button.
6868
*/
6969
export class FeedbackButtonManager extends FeedbackManager {
7070
/**
71-
*
71+
* Returns the name of the feedback component.
7272
*/
7373
protected static get _feedbackComponentName(): string {
7474
return 'FeedbackButton';
7575
}
7676
}
7777

7878
/**
79-
*
79+
* Provides functionality to show and hide the screenshot button.
8080
*/
8181
export class ScreenshotButtonManager extends FeedbackManager {
8282
/**
83-
*
83+
* Returns the name of the feedback component.
8484
*/
8585
protected static get _feedbackComponentName(): string {
8686
return 'ScreenshotButton';

packages/core/src/js/feedback/FeedbackWidgetProvider.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export interface FeedbackWidgetProviderState {
2828
}
2929

3030
/**
31-
*
31+
* FeedbackWidgetProvider is a component that wraps the feedback widget and provides
32+
* functionality to show and hide the widget. It also manages the visibility of the
33+
* feedback button and screenshot button.
3234
*/
3335
export class FeedbackWidgetProvider extends React.Component<FeedbackWidgetProviderProps> {
3436
public state: FeedbackWidgetProviderState = {

0 commit comments

Comments
 (0)