mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
Added missing modules change
This commit is contained in:
parent
7f249aeb13
commit
91a78c5eb9
2 changed files with 4 additions and 2 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 201d9617d5700ad7fff5aaf7f56962726a8c213f
|
||||
Subproject commit c91427f3c4de1f8ce9417d405214508e587a3ab9
|
||||
|
|
@ -10,9 +10,11 @@ import { shallow } from 'zustand/shallow';
|
|||
import { ToolTip } from '@/_components/ToolTip';
|
||||
import { debounce } from 'lodash';
|
||||
import usePopoverObserver from '@/AppBuilder/_hooks/usePopoverObserver';
|
||||
import { useModuleContext } from '@/AppBuilder/_contexts/ModuleContext';
|
||||
|
||||
const QueryCardMenu = ({ darkMode }) => {
|
||||
const appId = useStore((state) => state.app.appId);
|
||||
const { moduleId } = useModuleContext();
|
||||
const appId = useStore((state) => state.appStore.modules[moduleId].app.appId);
|
||||
const selectedQuery = useStore((state) => state.queryPanel.selectedQuery);
|
||||
const toggleQueryPermissionModal = useStore((state) => state.queryPanel.toggleQueryPermissionModal);
|
||||
const featureAccess = useStore((state) => state?.license?.featureAccess, shallow);
|
||||
|
|
|
|||
Loading…
Reference in a new issue