Skip to content

Commit

Permalink
Hotfix to bring back "Add local" for desktop app
Browse files Browse the repository at this point in the history
  • Loading branch information
salmenf committed Oct 7, 2024
1 parent 8b46127 commit 24e5475
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion @webwriter/app-desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webwriter/app-desktop",
"version": "0.12.2",
"version": "0.12.3",
"description": "Windows/Mac/Linux version of WebWriter",
"private": true,
"author": "Frederic Salmen <frederic@fsalmen.de>",
Expand Down
2 changes: 1 addition & 1 deletion @webwriter/app-desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webwriter"
version = "0.12.2"
version = "0.12.3"
description = "Windows/Mac/Linux version of WebWriter"
authors = ["Frederic Salmen <frederic@fsalmen.de>"]
license = "UNLICENSED"
Expand Down
2 changes: 1 addition & 1 deletion @webwriter/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webwriter/core",
"version": "0.12.2",
"version": "0.12.3",
"description": "Core functionality of WebWriter",
"browser": "index.html",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion @webwriter/core/view/editor/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ export class Palette extends LitElement {
${this.app.commands.groupedContainerCommands.map(this.Card)}
${this.ClipboardCard()}
${this.packagesInSearchOrder.map(this.Card)}
${null && this.AddLocalPackageButton()}
${WEBWRITER_ENVIRONMENT.backend === "tauri" && this.AddLocalPackageButton()}
${this.LocalPackageDialog()}
${this.ErrorDialog()}
`
Expand Down

0 comments on commit 24e5475

Please sign in to comment.