add editable URL

This commit is contained in:
Alex Holliday
2025-02-10 13:49:54 -08:00
parent 6e0bed589d
commit aaee0f7edd
2 changed files with 4 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ import timezones from "../../../../../Utils/timezones.json";
import PropTypes from "prop-types";
const TabSettings = ({
isCreate,
tabValue,
form,
handleFormChange,
@@ -68,8 +69,8 @@ const TabSettings = ({
id="url"
name="url"
type="url"
disabled={!isCreate}
label="Your status page address"
disabled
value={form.url}
onChange={handleFormChange}
/>

View File

@@ -8,6 +8,7 @@ import Content from "./Content";
import PropTypes from "prop-types";
const Tabs = ({
isCreate,
form,
errors,
monitors,
@@ -47,6 +48,7 @@ const Tabs = ({
progress={progress}
removeLogo={removeLogo}
errors={errors}
isCreate={isCreate}
/>
) : (
<Content