-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(answerConfigurationId): remove internal tag #4922
base: master
Are you sure you want to change the base?
fix(answerConfigurationId): remove internal tag #4922
Conversation
Pull Request ReportPR Title✅ Title follows the conventional commit spec. Live demo linksBundle Size
SSR Progress
Detailed logssearch : buildInteractiveResultsearch : buildInteractiveInstantResult search : buildInteractiveRecentResult search : buildInteractiveCitation search : buildGeneratedAnswer recommendation : missing SSR support case-assist : missing SSR support insight : missing SSR support commerce : missing SSR support |
c71a740
to
347b72e
Compare
@@ -85,7 +85,6 @@ export default class QuanticGeneratedAnswer extends LightningElement { | |||
*/ | |||
@api withToggle = false; | |||
/** | |||
* @internal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Quantic we use the tag @api
in the JS doc for public properties,
it should be something like this:
/**
* @api
* The unique identifier of the answer configuration to use to generate the answer.
* @type {string}
*/
@api answerConfigurationId;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm (atomic)
https://coveord.atlassian.net/browse/SVCC-4631
As we are releasing the KnowledgeHub and the Answer manager. It is now legitimate to show this property on the Quantic an Atomic Generate Answer components.