Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-23 01:40:29 +01:00
IE 11 caches agressively; prevent ajax call from caching
Dieser Commit ist enthalten in:
Ursprung
408d99e7e3
Commit
995df73d9e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -32,7 +32,7 @@ CustomWizard.reopenClass({
|
|||
});
|
||||
|
||||
export function findCustomWizard(wizardId) {
|
||||
return ajax({ url: `/w/${wizardId}`, dataType: 'json' }).then(result => {
|
||||
return ajax({ url: `/w/${wizardId}`, cache: false, dataType: 'json' }).then(result => {
|
||||
const wizard = result.wizard;
|
||||
|
||||
if (!wizard) return null;
|
||||
|
|
Laden …
In neuem Issue referenzieren