@aochuang/client-sdk 1.0.305 → 1.0.306

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -252,12 +252,18 @@ export default {
252
252
  this.filters.friendGroupEmpty = !this.filters.friendGroupEmpty
253
253
  },
254
254
  handleFriendRefreshClick () {
255
+ if (this.friendRefreshing) {
256
+ return
257
+ }
255
258
  this.friendRefreshing = true
256
259
  this.loadData().finally(() => {
257
260
  this.friendRefreshing = false
258
261
  })
259
262
  },
260
263
  handleRoomRefreshClick () {
264
+ if (this.roomRefreshing) {
265
+ return
266
+ }
261
267
  this.roomRefreshing = true
262
268
  this.loadData().finally(() => {
263
269
  this.roomRefreshing = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aochuang/client-sdk",
3
- "version": "1.0.305",
3
+ "version": "1.0.306",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"