Skip to content

Commit

Permalink
renamed into enMedD CHP
Browse files Browse the repository at this point in the history
  • Loading branch information
SchadenKai committed Aug 1, 2024
1 parent 32717fe commit 158858e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion web/src/app/admin/settings/SettingsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export function SettingsForm() {
<Title className="mb-4">Chat Settings</Title>
<IntegerInput
label="Chat Retention"
sublabel="Enter the maximum number of days you would like Danswer to retain chat messages. Leaving this field empty will cause Danswer to never delete chat messages."
sublabel="Enter the maximum number of days you would like enMedD CHP to retain chat messages. Leaving this field empty will cause enMedD CHP to never delete chat messages."
value={chatRetention === "" ? null : Number(chatRetention)}
onChange={(e) => {
const numValue = parseInt(e.target.value, 10);
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/chat/ChatPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function ChatPopup() {
let popupTitle = settings.enterpriseSettings.custom_popup_header;
if (!popupTitle) {
popupTitle = `Welcome to ${
settings.enterpriseSettings.application_name || "Danswer"
settings.enterpriseSettings.application_name || "enMedD CHP"
}!`;
}

Expand Down
2 changes: 1 addition & 1 deletion web/src/app/ee/admin/api-key/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { deleteApiKey, regenerateApiKey } from "./lib";
import { DanswerApiKeyForm } from "./DanswerApiKeyForm";

const API_KEY_TEXT = `
API Keys allow you to access Danswer APIs programmatically. Click the button below to generate a new API Key.
API Keys allow you to access enMedD CHP APIs programmatically. Click the button below to generate a new API Key.
`;

function NewApiKeyModal({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function CustomAnalyticsUpdateForm() {
For security reasons, you must provide a secret key to update this
script. This should be the value of the{" "}
<i>CUSTOM_ANALYTICS_SECRET_KEY</i> environment variable set when
initially setting up Danswer.
initially setting up enMedD CHP.
</>
</SubLabel>
<input
Expand Down
4 changes: 2 additions & 2 deletions web/src/app/ee/admin/performance/custom-analytics/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function Main() {
<div className="mt-4">
<Callout title="Custom Analytics is not enabled." color="red">
To set up custom analytics scripts, please work with the team who
setup Danswer in your organization to set the{" "}
setup enMedD CHP in your organization to set the{" "}
<i>CUSTOM_ANALYTICS_SECRET_KEY</i> environment variable.
</Callout>
</div>
Expand All @@ -22,7 +22,7 @@ function Main() {
return (
<div>
<Text className="mb-8">
This allows you to bring your own analytics tool to Danswer! Copy the
This allows you to bring your own analytics tool to enMedD CHP! Copy the
Web snippet from your analytics provider into the box below, and
we&apos;ll start sending usage events.
</Text>
Expand Down
8 changes: 4 additions & 4 deletions web/src/app/ee/admin/whitelabeling/WhitelabelingForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ export function WhitelabelingForm() {
<TextFormField
label="Application Name"
name="application_name"
subtext={`The custom name you are giving Danswer for your organization. This will replace 'Danswer' everywhere in the UI.`}
placeholder="Custom name which will replace 'Danswer'"
subtext={`The custom name you are giving enMedD CHP for your organization. This will replace 'enMedD CHP' everywhere in the UI.`}
placeholder="Custom name which will replace 'enMedD CHP'"
disabled={isSubmitting}
/>

Expand Down Expand Up @@ -135,7 +135,7 @@ export function WhitelabelingForm() {
</div>
) : (
<SubLabel>
Specify your own logo to replace the standard Danswer logo.
Specify your own logo to replace the standard enMedD CHP logo.
</SubLabel>
)}

Expand Down Expand Up @@ -164,7 +164,7 @@ export function WhitelabelingForm() {
name="custom_popup_header"
subtext={`The title for the popup that will be displayed for each user on their initial visit
to the application. If left blank AND Custom Popup Content is specified, will use "Welcome to ${
values.application_name || "Danswer"
values.application_name || "enMedD CHP"
}!".`}
placeholder="Initial Popup Header"
disabled={isSubmitting}
Expand Down

0 comments on commit 158858e

Please sign in to comment.