mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 11:19:05 +00:00
21 lines
732 B
TypeScript
21 lines
732 B
TypeScript
import DatasetAuthorComponent from 'wherehows-web/components/dataset-author';
|
|
|
|
export default class DatasetsOwnersSuggestedOwnerCard extends DatasetAuthorComponent {
|
|
/**
|
|
* Sets the html tag binded to the element generated by this component. Using here to override
|
|
* original set tagName in the extended DatasetAuthorComponent.
|
|
*/
|
|
tagName = 'div';
|
|
|
|
/**
|
|
* Sets the class names binded to the html element generated by this component
|
|
*/
|
|
classNames = ['suggested-owner-card'];
|
|
|
|
/**
|
|
* Sets the class names that are triggered by certain properties on the component evaluating truthy.
|
|
* Using here to override the original set bindings in the extended DatasetAuthorComponent
|
|
*/
|
|
classNameBindings = [];
|
|
}
|