Skip to content

Commit e638168

Browse files
fix getters
1 parent 17c4ada commit e638168

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stores/viewer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export const use_viewer_store = defineStore("viewer", {
4040
viewer_url += "/ws"
4141
return viewer_url
4242
},
43-
is_busy(state) {
44-
return state.request_counter > 0
43+
is_busy() {
44+
return this.request_counter > 0
4545
},
4646
},
4747
actions: {

0 commit comments

Comments
 (0)