Skip to content

Commit

Permalink
fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Mar 8, 2024
1 parent 162360b commit f86fe26
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/agents/AgentActionMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
</q-item-section>
<q-item-section>Shutdown</q-item-section>
</q-item>

<q-item clickable v-close-popup @click="showPolicyAdd(agent)">
<q-item-section side>
<q-icon size="xs" name="policy" />
Expand All @@ -199,9 +199,9 @@
"
>
<q-item-section side>
<q-icon size="xs" name="integration_instructions" />
<q-icon size="xs" name="analytics" />
</q-item-section>
<q-item-section>Integrations</q-item-section>
<q-item-section>Reporting</q-item-section>
<q-item-section side>
<q-icon name="keyboard_arrow_right" />
</q-item-section>
Expand Down Expand Up @@ -306,7 +306,7 @@ export default {
if (urlActions.value.length === 0) {
notifyWarning(
"No URL Actions configured. Go to Settings > Global Settings > URL Actions"
"No URL Actions configured. Go to Settings > Global Settings > URL Actions",
);
return;
}
Expand Down Expand Up @@ -372,7 +372,7 @@ export default {
notifySuccess(
`Maintenance mode was ${
agent.maintenance_mode ? "disabled" : "enabled"
} on ${agent.hostname}`
} on ${agent.hostname}`,
);
store.commit("setRefreshSummaryTab", true);
refreshDashboard();
Expand Down Expand Up @@ -470,7 +470,7 @@ export default {
}
});
}
function showPolicyAdd(agent) {
$q.dialog({
component: PolicyAdd,
Expand Down Expand Up @@ -539,7 +539,7 @@ export default {
notifySuccess(data);
refreshDashboard(
false /* clearTreeSelected */,
true /* clearSubTable */
true /* clearSubTable */,
);
} catch (e) {
console.error(e);
Expand Down

0 comments on commit f86fe26

Please sign in to comment.