feat: fix org admin permissions (#1822)

This commit is contained in:
XDTD
2023-05-09 00:06:52 +08:00
committed by GitHub
parent 3699177837
commit cb542ae46a
54 changed files with 242 additions and 114 deletions

View File

@ -33,14 +33,14 @@ class SystemInfo extends React.Component {
}
UNSAFE_componentWillMount() {
SystemBackend.getSystemInfo().then(res => {
SystemBackend.getSystemInfo("").then(res => {
this.setState({
systemInfo: res.data,
loading: false,
});
const id = setInterval(() => {
SystemBackend.getSystemInfo().then(res => {
SystemBackend.getSystemInfo("").then(res => {
this.setState({
systemInfo: res.data,
});