-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleaning out Incident word from frontend #704
Conversation
hi there @Ukochka 👋 |
@@ -63,7 +63,7 @@ const IncidentMatcher = observer((props: IncidentMatcherProps) => { | |||
<div className={cx('columns')}> | |||
<div className={cx('incident-list')}> | |||
<Text.Title className={cx('title')} level={5}> | |||
Matching Incidents | |||
Matching Alert groups |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should the "g" in "groups" also be capitalized if we're going to capitalize "Alert"?
grafana-plugin/src/plugin.json
Outdated
@@ -31,7 +31,7 @@ | |||
"includes": [ | |||
{ | |||
"type": "page", | |||
"name": "Incidents", | |||
"name": "Alert groups", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same w/ capitalization here.
label="Require resolution note when resolve incident" | ||
description={`Once user clicks "Resolve" for an incident they are require to fill a resolution note about the incident`} | ||
label="Require resolution note when resolve alert group" | ||
description={`Once user clicks "Resolve" for an alert group they are require to fill a resolution note about the alert group`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description={`Once user clicks "Resolve" for an alert group they are require to fill a resolution note about the alert group`} | |
description={`Once user clicks "Resolve" for an alert group, they will be required to fill in a resolution note about the alert group`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ same here
@@ -50,8 +50,8 @@ class SettingsPage extends React.Component<SettingsPageProps, SettingsPageState> | |||
<div className={cx('settings')}> | |||
<Field | |||
loading={!teamStore.currentTeam} | |||
label="Require resolution note when resolve incident" | |||
description={`Once user clicks "Resolve" for an incident they are require to fill a resolution note about the incident`} | |||
label="Require resolution note when resolve alert group" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label="Require resolution note when resolve alert group" | |
label="Require a resolution note when resolving alert groups" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ good mention
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should consider talking to the docs team (or maybe we have a copy-writing team?) regarding capitalization consistency (ex. Alert group
vs alert group
vs Alert Group
). We have instances of all three throughout the UI.
@@ -395,7 +395,7 @@ class IncidentPage extends React.Component<IncidentPageProps, IncidentPageState> | |||
</li> | |||
))} | |||
</ul> | |||
<Field label="Leave a resolution note" description="Will also show up in the thread of incident in Slack"> | |||
<Field label="Leave a resolution note" description="Will also show up in the thread of alert group in Slack"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be
show up in the thread of the alert group
or
should up in the thread of an alert group ?
Depending on usage, I'm not sure to which alert group we're referring to in this case. It is not correct as it is right now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved but please add those changes.
This should also have the change in the changelog I believe, it's good to keep track of all the frontend changes this way. |
…na/oncall into cleaning-incident-word-from-oncall
**What this PR does**: **Which issue(s) this PR fixes**: **Checklist** - [ ] Tests updated - [ ] Documentation added - [x] `CHANGELOG.md` updated
What this PR does:
Which issue(s) this PR fixes:
Checklist
CHANGELOG.md
updated