fix rate setting
This commit is contained in:
parent
087085f05e
commit
0665640660
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ export default {
|
|||
if (event === 'split') {
|
||||
return [this.normalizedState[0], this.normalizedState[0]]
|
||||
} else if (event === 'join') {
|
||||
return [this.normalizedState[0]]
|
||||
return this.normalizedState[0]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@
|
|||
</table>
|
||||
<Checkbox
|
||||
: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') }}
|
||||
</Checkbox>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue