We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904138e commit d6d7b2bCopy full SHA for d6d7b2b
1 file changed
app/components/OrgMembersPanel.vue
@@ -110,6 +110,12 @@ const roleCounts = computed(() => {
110
return counts
111
})
112
113
+// Refresh all data
114
+function refreshData() {
115
+ loadMembers()
116
+ loadTeamMemberships()
117
+}
118
+
119
// Load members
120
async function loadMembers() {
121
if (!isConnected.value) return
@@ -296,10 +302,7 @@ watch(lastExecutionTime, () => {
296
302
class="p-1.5 text-fg-muted hover:text-fg transition-colors duration-200 rounded focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-fg/50"
297
303
aria-label="Refresh members"
298
304
:disabled="isLoading"
299
- @click="
300
- loadMembers()
301
- loadTeamMemberships()
- "
305
+ @click="refreshData"
306
>
307
<span
308
class="i-carbon-renew block w-4 h-4"
0 commit comments