#2395 Treat default example as empty
This commit is contained in:
parent
41befc3587
commit
10fd2e1334
|
@ -272,12 +272,12 @@ toastr.options.timeOut = 4000; // How long the toast will display without user i
|
||||||
toastr.options.extendedTimeOut = 10000; // How long the toast will display after a user hovers over it
|
toastr.options.extendedTimeOut = 10000; // How long the toast will display after a user hovers over it
|
||||||
toastr.options.progressBar = true; // Visually indicate how long before a toast expires.
|
toastr.options.progressBar = true; // Visually indicate how long before a toast expires.
|
||||||
toastr.options.closeButton = true; // enable a close button
|
toastr.options.closeButton = true; // enable a close button
|
||||||
toastr.options.positionClass = "toast-top-center"; // Where to position the toast container
|
toastr.options.positionClass = 'toast-top-center'; // Where to position the toast container
|
||||||
toastr.options.onHidden = () => {
|
toastr.options.onHidden = () => {
|
||||||
// If we have any dialog still open, the last "hidden" toastr will remove the toastr-container. We need to keep it alive inside the dialog though
|
// If we have any dialog still open, the last "hidden" toastr will remove the toastr-container. We need to keep it alive inside the dialog though
|
||||||
// so the toasts still show up inside there.
|
// so the toasts still show up inside there.
|
||||||
fixToastrForDialogs();
|
fixToastrForDialogs();
|
||||||
}
|
};
|
||||||
|
|
||||||
// Allow target="_blank" in links
|
// Allow target="_blank" in links
|
||||||
DOMPurify.addHook('afterSanitizeAttributes', function (node) {
|
DOMPurify.addHook('afterSanitizeAttributes', function (node) {
|
||||||
|
@ -3439,7 +3439,7 @@ export async function Generate(type, { automatic_trigger, force_name2, quiet_pro
|
||||||
* @returns {string[]} Examples array with block heading
|
* @returns {string[]} Examples array with block heading
|
||||||
*/
|
*/
|
||||||
function parseMesExamples(examplesStr) {
|
function parseMesExamples(examplesStr) {
|
||||||
if (examplesStr.length === 0) {
|
if (examplesStr.length === 0 || examplesStr === '<START>') {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10774,4 +10774,4 @@ jQuery(async function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
initCustomSelectedSamplers();
|
initCustomSelectedSamplers();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue