mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
dont show tags on save dialog (mac)
This commit is contained in:
@@ -116,6 +116,7 @@ export class ElectronPlatformUtilsService implements PlatformUtilsService {
|
|||||||
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {
|
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {
|
||||||
remote.dialog.showSaveDialog(remote.getCurrentWindow(), {
|
remote.dialog.showSaveDialog(remote.getCurrentWindow(), {
|
||||||
defaultPath: fileName,
|
defaultPath: fileName,
|
||||||
|
showsTagField: false,
|
||||||
}, (filename) => {
|
}, (filename) => {
|
||||||
fs.writeFile(filename, Buffer.from(blobData), (err) => {
|
fs.writeFile(filename, Buffer.from(blobData), (err) => {
|
||||||
// error check?
|
// error check?
|
||||||
|
|||||||
Reference in New Issue
Block a user