Skip to content

Commit

Permalink
Merge branch 'silexlabs:dev' into bug_job_id
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviermgx authored Jun 13, 2024
2 parents 88a6d29 + 2544a21 commit 8cb609e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@silexlabs/silex",
"description": "Free and easy website builder for everyone.",
"version": "3.0.0-alpha.164",
"version": "3.0.0-alpha.165",
"version:backwardcompat": "3.0.0",
"author": {
"name": "Alex Hoyau",
Expand Down
6 changes: 4 additions & 2 deletions src/ts/client/grapesjs/PublicationManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ export class PublicationManager {
}
this.status = PublicationStatus.STATUS_NONE
// Save the website with the new settings
await this.editor.store(null)
// WIP: prevent saving during publication
// await this.editor.store(null)
// Display the dialog
this.dialog && this.dialog.displayPending(this.job, this.status)
return
Expand Down Expand Up @@ -190,7 +191,8 @@ export class PublicationManager {
this.settings.options = data.options
this.status = PublicationStatus.STATUS_NONE
// Save the website with the new settings
await this.editor.store(null)
// WIP: prevent saving during publication
// await this.editor.store(null)
// Display the dialog
this.dialog && this.dialog.displayPending(this.job, this.status)
//await this.startPublication()
Expand Down

0 comments on commit 8cb609e

Please sign in to comment.