feat: fix the dashboard page shows zero data in mobile phone (#3356)

This commit is contained in:
DacongDA 2024-11-16 22:02:49 +08:00 committed by GitHub
parent 96f8b3d937
commit 4f3d62520a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,11 +198,11 @@ function ManagementPage(props) {
</div>
</Tooltip>
<OpenTour />
{Setting.isAdminUser(props.account) && !Setting.isMobile() && (props.uri.indexOf("/trees") === -1) &&
{Setting.isAdminUser(props.account) && (props.uri.indexOf("/trees") === -1) &&
<OrganizationSelect
initValue={Setting.getOrganization()}
withAll={true}
style={{marginRight: "20px", width: "180px", display: "flex"}}
style={{marginRight: "20px", width: "180px", display: !Setting.isMobile() ? "flex" : "none"}}
onChange={(value) => {
Setting.setOrganization(value);
}}