Skip to content

Commit 9e16039

Browse files
committed
Update both version
* Fix import from error
1 parent 2d06fd5 commit 9e16039

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

automation_ide/automation_editor_ui/menu/menu_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from typing import TYPE_CHECKING
44

5-
from je_editor import BrowserWidget
5+
from je_editor import MainBrowserWidget
66

77
if TYPE_CHECKING:
88
from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor
@@ -11,6 +11,6 @@
1111
def open_web_browser(
1212
automation_editor_instance: AutomationEditor, url: str, tab_name: str) -> None:
1313
automation_editor_instance.tab_widget.addTab(
14-
BrowserWidget(start_url=url),
14+
MainBrowserWidget(start_url=url),
1515
f"{tab_name}{automation_editor_instance.tab_widget.count()}"
1616
)

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "automation_ide_dev"
9-
version = "0.0.54"
9+
version = "0.0.55"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "automation_ide"
9-
version = "0.0.48"
9+
version = "0.0.49"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]

0 commit comments

Comments
 (0)