started buy order qortalrequset

This commit is contained in:
2024-11-06 00:44:04 +02:00
parent 37de676069
commit 40e8e316a8
12 changed files with 213 additions and 37 deletions

View File

@@ -201,8 +201,8 @@ export const AppsCategoryDesktop = ({
</AppsWidthLimiter>
<AppsWidthLimiter>
<StyledVirtuosoContainer
sx={{
height: rootHeight,
sx={{
height: `calc(100vh - 36px - 90px)`,
}}
>
<Virtuoso

View File

@@ -221,6 +221,7 @@ export const AppsDesktop = ({ mode, setMode, show , myName, goToHome, setDesktop
}, [tabs]);
const setSelectedTabFunc = (e) => {
const data = e.detail?.data;
if(e.detail?.isDevMode) return
setSelectedTab(data);
setTimeout(() => {

View File

@@ -113,7 +113,7 @@ export const AppsDevMode = ({ mode, setMode, show , myName, goToHome, setDesktop
}, [tabs]);
const setSelectedTabFunc = (e) => {
const data = e.detail?.data;
if(!e.detail?.isDevMode) return
setSelectedTab(data);
setTimeout(() => {
executeEvent("appsDevModeSetTabsToNav", {

View File

@@ -16,7 +16,8 @@ export const AppsDevModeTabComponent = ({isSelected, app}) => {
return
}
executeEvent('setSelectedTab', {
data: app
data: app,
isDevMode: true
})
}}>
<TabParent sx={{

View File

@@ -96,7 +96,7 @@ export const AppsLibraryDesktop = ({
myName,
hasPublishApp,
isShow,
categories = { categories },
categories
}) => {
const [searchValue, setSearchValue] = useState("");
const virtuosoRef = useRef();

View File

@@ -183,7 +183,7 @@ const UIQortalRequests = [
'GET_WALLET_BALANCE', 'GET_USER_WALLET_INFO', 'GET_CROSSCHAIN_SERVER_INFO',
'GET_TX_ACTIVITY_SUMMARY', 'GET_FOREIGN_FEE', 'UPDATE_FOREIGN_FEE',
'GET_SERVER_CONNECTION_HISTORY', 'SET_CURRENT_FOREIGN_SERVER',
'ADD_FOREIGN_SERVER', 'REMOVE_FOREIGN_SERVER', 'GET_DAY_SUMMARY', 'CREATE_TRADE_BUY_ORDER'
'ADD_FOREIGN_SERVER', 'REMOVE_FOREIGN_SERVER', 'GET_DAY_SUMMARY', 'CREATE_TRADE_BUY_ORDER', 'CREATE_TRADE_SELL_ORDER'
];