Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
anoopmb
/
frappe
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
[minor] pass null instead of false if there are no unsaved changes (
#3860
)
version-14
Makarand Bauskar
8 anni fa
committed by
Rushabh Mehta
parent
44ee24aa75
commit
5cf03a4282
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
frappe/public/js/frappe/desk.js
+ 1
- 1
frappe/public/js/frappe/desk.js
Vedi File
@@ -494,7 +494,7 @@ frappe.Application = Class.extend({
if(doc.__unsaved) { unsaved_docs.push(doc.name); }
}
}
return unsaved_docs.length ? true :
false
;
return unsaved_docs.length ? true :
null
;
};
},
Scrivi
Anteprima
Caricamento…
Annulla
Salva