Skip to content

Commit

Permalink
Fix Display Value
Browse files Browse the repository at this point in the history
  • Loading branch information
nsano-rururu committed May 22, 2023
1 parent 587519e commit a5e0bf7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertGoogleChat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="googleChatWebhookUrl.length" :content="googleChatWebhookUrl.join(', ')" placement="top">
<span>Tags ({{ googleChatWebhookUrl.length }})</span>
<span>googleChatWebhookUrls ({{ googleChatWebhookUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ googleChatWebhookUrl.length }})</span>
<span v-else>googleChatWebhookUrls ({{ googleChatWebhookUrl.length }})</span>
</span>
</template>
<template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertHttpPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="httpPostUrl.length" :content="httpPostUrl.join(', ')" placement="top">
<span>Tags ({{ httpPostUrl.length }})</span>
<span>httpPostUrls ({{ httpPostUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ httpPostUrl.length }})</span>
<span v-else>httpPostUrls ({{ httpPostUrl.length }})</span>
</span>
</template>
<template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertMattermost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="mattermostWebhookUrl.length" :content="mattermostWebhookUrl.join(', ')" placement="top">
<span>Tags ({{ mattermostWebhookUrl.length }})</span>
<span>mattermostWebhookUrls ({{ mattermostWebhookUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ mattermostWebhookUrl.length }})</span>
<span v-else>mattermostWebhookUrls ({{ mattermostWebhookUrl.length }})</span>
</span>
</template>
<template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertMsTeams.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="msTeamsWebhookUrl.length" :content="msTeamsWebhookUrl.join(', ')" placement="top">
<span>Tags ({{ msTeamsWebhookUrl.length }})</span>
<span>msTeamsWebhookUrls ({{ msTeamsWebhookUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ msTeamsWebhookUrl.length }})</span>
<span v-else>msTeamsWebhookUrls ({{ msTeamsWebhookUrl.length }})</span>
</span>
</template>
<template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertRocketChat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="rocketChatWebhookUrl.length" :content="rocketChatWebhookUrl.join(', ')" placement="top">
<span>Tags ({{ rocketChatWebhookUrl.length }})</span>
<span>rocketChatWebhookUrls ({{ rocketChatWebhookUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ rocketChatWebhookUrl.length }})</span>
<span v-else>rocketChatWebhookUrls ({{ rocketChatWebhookUrl.length }})</span>
</span>
</template>
<template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/alert/ConfigAlertSlack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<template v-slot:reference>
<span class="pop-trigger">
<el-tooltip v-if="slackWebhookUrl.length" :content="slackWebhookUrl.join(', ')" placement="top">
<span>Tags ({{ slackWebhookUrl.length }})</span>
<span>slackWebhookUrls ({{ slackWebhookUrl.length }})</span>
</el-tooltip>
<span v-else>Tags ({{ slackWebhookUrl.length }})</span>
<span v-else>slackWebhookUrls ({{ slackWebhookUrl.length }})</span>
</span>
</template>
<template>
Expand Down

0 comments on commit a5e0bf7

Please sign in to comment.