mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-74084' of https://github.com/paulholden/moodle
This commit is contained in:
commit
01b8e81e7d
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -87,14 +87,12 @@ const fetchTour = async tourId => {
|
||||
const pendingPromise = new Pending(`admin_usertour_fetchTour:${tourId}`);
|
||||
|
||||
try {
|
||||
// If we don't have any tour config (because it doesn't need showing for the current user), return early.
|
||||
const response = await tourRepository.fetchTour(tourId);
|
||||
if (!response.hasOwnProperty('tourconfig')) {
|
||||
pendingPromise.resolve();
|
||||
if (response.hasOwnProperty('tourconfig')) {
|
||||
const {html} = await Templates.renderForPromise('tool_usertours/tourstep', response.tourconfig);
|
||||
startBootstrapTour(tourId, html, response.tourconfig);
|
||||
}
|
||||
|
||||
const {html} = await Templates.renderForPromise('tool_usertours/tourstep', response.tourconfig);
|
||||
startBootstrapTour(tourId, html, response.tourconfig);
|
||||
|
||||
pendingPromise.resolve();
|
||||
} catch (error) {
|
||||
pendingPromise.resolve();
|
||||
|
Loading…
x
Reference in New Issue
Block a user