Skip to content

Commit

Permalink
style: fix position of Ban time in Threat shield (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre8244 authored Oct 31, 2024
1 parent 4dbfde5 commit 2f9db56
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/components/standalone/security/threat_shield/SettingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -293,23 +293,6 @@ onMounted(() => {
</NeTooltip>
</template>
</NeTextInput>
<!-- patterns to detect attacks -->
<NeMultiTextInput
v-model="attackPatterns"
:add-item-label="t('standalone.threat_shield.add_pattern')"
:title="t('standalone.threat_shield.attack_patterns')"
required
:disabledInputs="loading.editSettings"
:generalInvalidMessage="errorBag.getFirstFor('attackPatterns')"
>
<template #tooltip>
<NeTooltip>
<template #content>{{
t('standalone.threat_shield.attack_patterns_tooltip')
}}</template>
</NeTooltip>
</template>
</NeMultiTextInput>
<!-- ban time -->
<NeCombobox
v-model="banTime"
Expand All @@ -332,6 +315,23 @@ onMounted(() => {
</NeTooltip>
</template>
</NeCombobox>
<!-- patterns to detect attacks -->
<NeMultiTextInput
v-model="attackPatterns"
:add-item-label="t('standalone.threat_shield.add_pattern')"
:title="t('standalone.threat_shield.attack_patterns')"
required
:disabledInputs="loading.editSettings"
:generalInvalidMessage="errorBag.getFirstFor('attackPatterns')"
>
<template #tooltip>
<NeTooltip>
<template #content>{{
t('standalone.threat_shield.attack_patterns_tooltip')
}}</template>
</NeTooltip>
</template>
</NeMultiTextInput>
</template>
</div>
</FormLayout>
Expand Down

0 comments on commit 2f9db56

Please sign in to comment.