Compare commits

..

2 Commits

Author SHA1 Message Date
Sam Hoffman
0da4cd2b83 remove redundant click handler 2026-01-09 13:25:51 -05:00
Sam Hoffman
ea4457765b disable connection throttling on test ircd 2026-01-09 13:25:46 -05:00
2 changed files with 2 additions and 6 deletions

View File

@@ -996,7 +996,7 @@ metadata:
max-keys: 100 max-keys: 100
# rate limiting for client metadata updates, which are expensive to process # rate limiting for client metadata updates, which are expensive to process
client-throttle: client-throttle:
enabled: true enabled: false
duration: 2m duration: 2m
max-attempts: 10 max-attempts: 10

View File

@@ -6,15 +6,11 @@ const store = useIRCStore();
const bufferList = computed(() => { const bufferList = computed(() => {
return Object.keys(buffers); return Object.keys(buffers);
}); });
function click(bufferName) {
store.setActiveBuffer(bufferName);
}
</script> </script>
<template> <template>
<v-list> <v-list>
<v-list-item v-for="buf in bufferList" @click="click(buf)"> <v-list-item v-for="buf in bufferList" @click="store.setActiveBuffer(buf)">
{{ buf }} {{ buf }}
</v-list-item> </v-list-item>
</v-list> </v-list>