зеркало из https://github.com/electron/electron.git
fix: `preferCSSPageSize` error type (#38761)
fix: preferCSSPageSize error type
This commit is contained in:
Родитель
dc2e822dc7
Коммит
10852b3fd5
|
@ -317,7 +317,7 @@ WebContents.prototype.printToPDF = async function (options) {
|
|||
|
||||
if (options.preferCSSPageSize !== undefined) {
|
||||
if (typeof options.preferCSSPageSize !== 'boolean') {
|
||||
return Promise.reject(new Error('footerTemplate must be a String'));
|
||||
return Promise.reject(new Error('preferCSSPageSize must be a Boolean'));
|
||||
}
|
||||
printSettings.preferCSSPageSize = options.preferCSSPageSize;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче