mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
fixed tab switching
This commit is contained in:
parent
ed17b425a3
commit
b055fff6e0
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,9 +1,17 @@
|
|||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
### 4.3.0
|
||||||
|
- ADDED: Table structure editor
|
||||||
|
- ADDED: Index support
|
||||||
|
- ADDED: Unique constraint support
|
||||||
|
- ADDED: Context menu for drop/rename table/columns and for drop view/procedure/function
|
||||||
|
- ADDED: Added support for windows arm64 platform
|
||||||
|
- FIXED: Search by _id in MongoDB
|
||||||
|
|
||||||
### 4.2.6
|
### 4.2.6
|
||||||
- Fixed MongoDB import
|
- FIXED: Fixed MongoDB import
|
||||||
- Configurable thousands separator #136
|
- ADDED: Configurable thousands separator #136
|
||||||
- Using case insensitive text search in postgres
|
- ADDED: Using case insensitive text search in postgres
|
||||||
|
|
||||||
### 4.2.5
|
### 4.2.5
|
||||||
- FIXED: Fixed crash when using large model on some installations
|
- FIXED: Fixed crash when using large model on some installations
|
||||||
|
@ -24,7 +24,7 @@ export default function createActivator(name: string, activateOnTabVisible: bool
|
|||||||
if (tabVisible) {
|
if (tabVisible) {
|
||||||
const unsubscribeTabVisible = tabVisible.subscribe(value => {
|
const unsubscribeTabVisible = tabVisible.subscribe(value => {
|
||||||
tabVisibleValue = value;
|
tabVisibleValue = value;
|
||||||
if (activateOnTabVisible) {
|
if (activateOnTabVisible && tabVisibleValue) {
|
||||||
activate();
|
activate();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user