Skip to content

Commit

Permalink
Fixes windows setup
Browse files Browse the repository at this point in the history
  • Loading branch information
IceEnd committed Jun 23, 2018
1 parent 8a41565 commit 23bc7f8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/views/component/cloud/Drive.jsx
Expand Up @@ -15,6 +15,7 @@ import {
import { getTokens } from '../../utils/db/app';

const confirm = Modal.confirm;
const BreadcrumbItem = Breadcrumb.Item;

export default class Drive extends Component {
static displayName = 'CloudDrive';
Expand Down Expand Up @@ -261,17 +262,17 @@ export default class Drive extends Component {
<div className={`bread-bar ${blur}`}>
<div className="bread-container">
<Breadcrumb>
<Breadcrumb.Item>{driveName}</Breadcrumb.Item>
<Breadcrumb.Item
<BreadcrumbItem>{driveName}</BreadcrumbItem>
<BreadcrumbItem
className="cursor-pointer"
onClick={this.backRoot}
>
Yosoro
</Breadcrumb.Item>
</BreadcrumbItem>
{currentProjectName ? (
<Breadcrumb.Item>
<BreadcrumbItem>
{currentProjectName}
</Breadcrumb.Item>
</BreadcrumbItem>
) : null}
</Breadcrumb>
<div className="tools">
Expand Down
Binary file added assets/loading.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions scripts/packageSetup.js
Expand Up @@ -16,6 +16,7 @@ function getOptions(appPath, arch) {
iconUrl: path.resolve(__dirname, '../assets/icons/win/app.ico'),
setupIcon: path.resolve(__dirname, '../assets/icons/win/app.ico'),
setupExe: `${productName}-win32-${arch}-setup.exe`,
loadingGif: path.resolve(__dirname, '../assets/loading.gif'),
noMsi: true,
};
}
Expand Down

0 comments on commit 23bc7f8

Please sign in to comment.