Merge branch 'more-fixes' into shigusegubu-themes3

This commit is contained in:
Henry Jameson 2026-06-30 20:45:37 +03:00
commit cf67655257
4 changed files with 30 additions and 4 deletions

View file

@ -54,7 +54,7 @@
dd { dd {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
overflow-x: hidden; overflow: hidden;
} }
} }

View file

@ -45,7 +45,7 @@ export default {
if (event === 'split') { if (event === 'split') {
return [this.normalizedState[0], this.normalizedState[0]] return [this.normalizedState[0], this.normalizedState[0]]
} else if (event === 'join') { } else if (event === 'join') {
return [this.normalizedState[0]] return this.normalizedState[0]
} }
} }
}, },

View file

@ -88,7 +88,7 @@
</table> </table>
<Checkbox <Checkbox
:model-value="isSeparate" :model-value="isSeparate"
@update:model-value="event => update({ event: event ? 'join' : 'split', eventType: 'toggleMode' })" @update:model-value="event => update({ event: event ? 'split' : 'join', eventType: 'toggleMode' })"
> >
{{ $t('admin_dash.rate_limit.separate') }} {{ $t('admin_dash.rate_limit.separate') }}
</Checkbox> </Checkbox>

View file

@ -1480,10 +1480,36 @@
"description": "Number of retries for making a connection CONFIRM" "description": "Number of retries for making a connection CONFIRM"
} }
}, },
":hackney_pools": {
":rich_media": {
"label": "Rich media",
"description": "idk",
":max_connections": {
"label": "Max connections",
"description": "Number workers in the pool."
},
":timeout": {
"label": "Timeout",
"description": "Timeout while `hackney` will wait for response."
}
}
},
":pools": { ":pools": {
":rich_media": { ":rich_media": {
"label": "Rich media", "label": "Rich media",
"description": "idk" "description": "idk",
":size": {
"label": "Size",
"description": "Maximum number of concurrent requests in the pool."
},
":max_waiting": {
"label": "Max waiting",
"description": "Maximum number of requests waiting for other requests to finish. After this number is reached, the pool will start returning errors when a new request is made"
},
":recv_timeout": {
"label": "Recv timeout",
"description": "Timeout for the pool while gun will wait for response"
}
} }
}, },
":rate_limit": { ":rate_limit": {