From cbda623fecf438cbd20845a2db6c6ace3e90e7c3 Mon Sep 17 00:00:00 2001 From: Jackie Luo Date: Sat, 23 Apr 2016 14:58:20 -0800 Subject: [PATCH] :art:(plugins): Fix line breaks --- internal_packages/plugins/lib/packages-store.jsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/internal_packages/plugins/lib/packages-store.jsx b/internal_packages/plugins/lib/packages-store.jsx index 562caeb0e..5b02a0d5e 100644 --- a/internal_packages/plugins/lib/packages-store.jsx +++ b/internal_packages/plugins/lib/packages-store.jsx @@ -229,9 +229,7 @@ const PackagesStore = Reflux.createStore({ NylasEnv.packages.installPackageFromPath(filenames[0], (err) => { if (err) return; const packageName = path.basename(filenames[0]); - const msg = `${packageName} has been installed and enabled. No need to - restart! If you don't see the plugin loaded, check the - console for errors.` + const msg = `${packageName} has been installed and enabled. No need to restart! If you don't see the plugin loaded, check the console for errors.` this._displayMessage("Plugin installed! 🎉", msg); }); }); @@ -242,10 +240,7 @@ const PackagesStore = Reflux.createStore({ const btn = dialog.showMessageBox({ type: 'warning', message: "Run with debug flags?", - detail: `To develop plugins, you should run N1 with debug flags. - This gives you better error messages, the debug version of - React, and more. You can disable it at any time from the - Developer menu.`, + detail: `To develop plugins, you should run N1 with debug flags. This gives you better error messages, the debug version of React, and more. You can disable it at any time from the Developer menu.`, buttons: ["OK", "Cancel"], }); if (btn === 0) {