diff --git a/administrator/components/com_guidedtours/src/View/Steps/HtmlView.php b/administrator/components/com_guidedtours/src/View/Steps/HtmlView.php index 550c684f9df27..e7a3d1fe9d0e1 100644 --- a/administrator/components/com_guidedtours/src/View/Steps/HtmlView.php +++ b/administrator/components/com_guidedtours/src/View/Steps/HtmlView.php @@ -108,6 +108,9 @@ public function display($tpl = null) throw new GenericDataException(implode("\n", $errors), 500); } + // Unset the tour_id field from activeFilters as we don't filter by tour here. + unset($this->activeFilters['tour_id']); + $tour_id = $this->state->get('filter.tour_id'); $this->isLocked = Multilanguage::isEnabled() && StepHelper::getTourLocked($tour_id);