mirror of
https://github.com/code-rhapsodie/ezdataflow-bundle.git
synced 2026-04-24 06:28:02 +02:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 411fd42471 | |||
| 0b295ba5d7 | |||
| 1be233b29d |
@@ -1,3 +1,12 @@
|
||||
# Version 4.1.2
|
||||
|
||||
* Fix main menu label
|
||||
* Fix redirection after adding a new oneshot job
|
||||
|
||||
# Version 4.1.1
|
||||
|
||||
* Fix NotModifiedContentFilter when creating new translation
|
||||
|
||||
# Version 4.1.0
|
||||
|
||||
* Allow Dataflow 4 by @jeremycr in https://github.com/code-rhapsodie/ezdataflow-bundle/pull/44
|
||||
|
||||
@@ -91,7 +91,7 @@ class JobController extends Controller
|
||||
}
|
||||
|
||||
return new JsonResponse([
|
||||
'redirect' => $this->generateUrl('coderhapsodie.ezdataflow.main', ['_fragment' => 'oneshot'],
|
||||
'redirect' => $this->generateUrl('coderhapsodie.ezdataflow.main', ['_fragment' => 'ibexa-tab-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-oneshot'],
|
||||
UrlGeneratorInterface::ABSOLUTE_URL),
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
coderhapsodie.ezdataflow: eZ Dataflow
|
||||
@@ -0,0 +1 @@
|
||||
coderhapsodie.ezdataflow: eZ Dataflow
|
||||
@@ -71,22 +71,6 @@
|
||||
.closest('ul').querySelectorAll('li.ibexa-tabs__tab');
|
||||
const tabs = document.getElementById('ibexa-tab-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-repeating')
|
||||
.closest('.tab-content').querySelectorAll('.tab-pane');
|
||||
if (window.location.hash && window.location.hash === '#oneshot') {
|
||||
labels.forEach((link) => link.classList.remove('active'));
|
||||
tabs.forEach((tab) => tab.classList.remove('active'));
|
||||
document.getElementById('ibexa-tab-label-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-oneshot')
|
||||
.closest('li.ibexa-tabs__tab').classList.add('active');
|
||||
document.getElementById('ibexa-tab-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-oneshot')
|
||||
.closest('.tab-pane').classList.add('active');
|
||||
}
|
||||
if (window.location.hash && window.location.hash === '#history') {
|
||||
labels.forEach((link) => link.classList.remove('active'));
|
||||
tabs.forEach((tab) => tab.classList.remove('active'));
|
||||
document.getElementById('ibexa-tab-label-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-history')
|
||||
.closest('li.ibexa-tabs__tab').classList.add('active');
|
||||
document.getElementById('ibexa-tab-coderhapsodie-ezdataflow-code-rhapsodie-ezdataflow-history')
|
||||
.closest('.tab-pane').classList.add('active');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
.then((result) => {
|
||||
if (result.redirect) {
|
||||
window.location = result.redirect;
|
||||
window.location.reload();
|
||||
return;
|
||||
}
|
||||
const node = document.createElement('div');
|
||||
|
||||
Reference in New Issue
Block a user