renderNoActivitiesError()

in src/app/activities-content.js [46:69]


  renderNoActivitiesError() {
    return (
      <EmptyWidget
        face={EmptyWidgetFaces.OK}
      >
        {
          <div className="aw__empty-widget-message">
            {i18n('There hasn\'t been any activity that matches the filters for this widget within the last 90 days')}
          </div>
        }
        {
          this.props.editable &&
          (
            <Link
              pseudo
              onClick={this.props.onEdit}
            >
              {i18n('Edit widget filters')}
            </Link>
          )
        }
      </EmptyWidget>
    );
  }