add documentation, changeset, and api-report
Signed-off-by: nikolar <reyna.nikolayev@autodesk.com>
This commit is contained in:
@@ -90,6 +90,24 @@ const overviewContent = (
|
||||
</Grid>
|
||||
);
|
||||
|
||||
// Require comments for specific feedback responses
|
||||
const overviewContent = (
|
||||
<Grid container spacing={3} alignItems="stretch">
|
||||
...
|
||||
+ <Grid item md={2}>
|
||||
+ <InfoCard title="Rate this entity">
|
||||
+ <LikeDislikeButtons
|
||||
+ feedbackDialogResponses = {[
|
||||
+ { id: 'incorrect', label: 'Incorrect info' },
|
||||
+ { id: 'missing', label: 'Missing info', mustComment: true },
|
||||
+ { id: 'other', label: 'Other (please specify below)', mustComment: true },
|
||||
+ ]}
|
||||
+ />
|
||||
+ </InfoCard>
|
||||
+ </Grid>
|
||||
...
|
||||
</Grid>
|
||||
);
|
||||
...
|
||||
|
||||
// Add to each applicable kind/type of entity as desired
|
||||
|
||||
@@ -79,6 +79,8 @@ export interface EntityFeedbackResponse {
|
||||
id: string;
|
||||
// (undocumented)
|
||||
label: string;
|
||||
// (undocumented)
|
||||
mustComment?: boolean;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
|
||||
Reference in New Issue
Block a user