DEV: Adds missing defer attribute to wizard js in dev layout (#17146)

Small followup to #17063

The wizard `js` file slipped through the cracks. This only affected dev installs.
This commit is contained in:
Joe 2022-06-20 16:59:42 +08:00 committed by GitHub
parent b2bf1db36f
commit 9d86a2b567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function head(buffer, bootstrap, headers, baseURL) {
}
if (admin) {
buffer.push(`<script src="${baseURL}assets/wizard.js"></script>`);
buffer.push(`<script defer src="${baseURL}assets/wizard.js"></script>`);
}
}