2018-04-12 14:39:22 -07:00
|
|
|
import DatasetAuthorComponent from 'wherehows-web/components/dataset-author';
|
|
|
|
|
|
|
|
|
|
export default class DatasetsOwnersSuggestedOwnerCard extends DatasetAuthorComponent {
|
|
|
|
|
/**
|
2018-04-16 11:53:29 -07:00
|
|
|
* Sets the html tag binded to the element generated by this component. Using here to override
|
|
|
|
|
* original set tagName in the extended DatasetAuthorComponent.
|
2018-04-12 14:39:22 -07:00
|
|
|
*/
|
|
|
|
|
tagName = 'div';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets the class names binded to the html element generated by this component
|
|
|
|
|
*/
|
2018-04-16 13:26:01 -07:00
|
|
|
classNames = ['suggested-owner-card'];
|
2018-04-12 14:39:22 -07:00
|
|
|
|
|
|
|
|
/**
|
2018-04-16 11:53:29 -07:00
|
|
|
* 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
|
2018-04-12 14:39:22 -07:00
|
|
|
*/
|
|
|
|
|
classNameBindings = [];
|
|
|
|
|
}
|