Skip to content

Commit

Permalink
Webui v1 fix quick actions (#580)
Browse files Browse the repository at this point in the history
* fix: fix quick actions with falsely payload

* fix: fix first run for latest daily

* bump version

* make webpack error to fail build
fix type

---------

Co-authored-by: Mikal Stordal <[email protected]>
  • Loading branch information
hidden4003 and revam authored Jul 3, 2023
1 parent b0256a7 commit c729017
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion run.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ tasks.set('start', () => {
});

// Execute the specified task or default one. E.g.: node run build
run(/^\w/.test(process.argv[2] || '') ? process.argv[2] : 'start' /* default */);
run(/^\w/.test(process.argv[2] || '') ? process.argv[2] : 'start' /* default */).catch(() => process.exit(1));
1 change: 1 addition & 0 deletions src/core/slices/serverSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const initialState = {
Username: '',
Password: '',
Schema: '',
Host: '',
Hostname: '',
SQLite_DatabaseFile: '',
},
Expand Down

0 comments on commit c729017

Please sign in to comment.