Fixed the context menu within popout windows for the web client
parent
1253d6a4fb
commit
de3ab5843a
|
@ -6,6 +6,7 @@
|
||||||
- Added support for HTML encoded links (Example would be when copying from Edge the URL)
|
- Added support for HTML encoded links (Example would be when copying from Edge the URL)
|
||||||
- Enabled context menus for all clickable client tags
|
- Enabled context menus for all clickable client tags
|
||||||
- Allowing to drag client tags
|
- Allowing to drag client tags
|
||||||
|
- Fixed the context menu within popout windows for the web client
|
||||||
|
|
||||||
* **08.12.20**
|
* **08.12.20**
|
||||||
- Fixed the permission editor not resolving unique ids
|
- Fixed the permission editor not resolving unique ids
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
/* This is the entry point file for the external modals */
|
||||||
|
|
||||||
|
import "./ui/context-menu";
|
||||||
|
import "tc-shared/ui/react-elements/external-modal/PopoutEntrypoint"
|
|
@ -4,7 +4,8 @@ const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
|
||||||
|
|
||||||
export = () => config_base.config("web").then(config => {
|
export = () => config_base.config("web").then(config => {
|
||||||
Object.assign(config.entry, {
|
Object.assign(config.entry, {
|
||||||
"shared-app": "./web/app/index.ts"
|
"shared-app": "./web/app/index.ts",
|
||||||
|
"modal-external": "./web/app/index-external.ts"
|
||||||
});
|
});
|
||||||
|
|
||||||
Object.assign(config.resolve.alias, {
|
Object.assign(config.resolve.alias, {
|
||||||
|
|
Loading…
Reference in New Issue