static getDerivedStateFromProps()

in src/components/view/TimeGrouping/TimeGrouping.tsx [28:33]


  static getDerivedStateFromProps(nextProps: TimeGroupingProps) {
    return {
      timeGroupingError:
        nextProps.value?.label === 'MIN INTERVAL' ? '' : getError(nextProps.value, nextProps.scopedVars),
    };
  }