king
2023-08-08 dc258e4600bea2fba1e25054d163a2f4b1326a85
src/tabviews/custom/components/code/sand-box/index.jsx
@@ -114,15 +114,15 @@
        if (config.$time) {
          if (!this.loaded) {
            Api.getLCacheConfig(config.uuid, config.$time).then(res => {
              if (!res && config.setting.onload === 'true') {
              if (!res.valid && config.setting.onload === 'true') {
                setTimeout(() => {
                  this.loadData()
                }, config.setting.delay || 0)
              }
    
              if (!res || this.loaded) return
              if (!res.data || this.loaded) return
  
              this.setState({data: res}, () => {
              this.setState({data: res.data}, () => {
                this.renderView()
              })
            })
@@ -132,9 +132,9 @@
        } else {
          if (!this.loaded) {
            Api.getLCacheConfig(config.uuid, 0).then(res => {
              if (!res || this.loaded) return
              if (!res.data || this.loaded) return
      
              this.setState({data: res}, () => {
              this.setState({data: res.data}, () => {
                this.renderView()
              })
            })