public void SetObjectiverProgress(ObjectiveProgress objectiveProgress)
    {
        _objectiveProgress = objectiveProgress;
        _currentProgress = _objectiveProgress.Progress;
        _currentProgressValue = _objectiveProgress.ProgressValue();

        _cellContent.SetActive(true);

        _descriptionLabel.text = _objectiveProgress.FullDescription();

        _progressLabel.text = _currentProgress + "/" + _objectiveProgress.TargetValue();

        _progressBarImage.fillAmount = _currentProgressValue;
    }