diff --git a/web/components/checkbox.tsx b/web/components/checkbox.tsx index 9cc7cae9..22a867b2 100644 --- a/web/components/checkbox.tsx +++ b/web/components/checkbox.tsx @@ -5,12 +5,13 @@ export function Checkbox(props: { checked: boolean toggle: (checked: boolean) => void className?: string + disabled?: boolean }) { - const { label, checked, toggle, className } = props + const { label, checked, toggle, className, disabled } = props return (
-
+
toggle(!e.target.checked)} + disabled={disabled} />
diff --git a/web/components/editor.tsx b/web/components/editor.tsx index 41c2b80a..4b3e2cce 100644 --- a/web/components/editor.tsx +++ b/web/components/editor.tsx @@ -21,7 +21,7 @@ import { FileUploadButton } from './file-upload-button' import { linkClass } from './site-link' const proseClass = clsx( - 'prose prose-sm prose-p:my-0 prose-li:my-0 prose-blockquote:not-italic max-w-none', + 'prose prose-sm prose-p:my-0 prose-li:my-0 prose-blockquote:not-italic max-w-none' ) export function useTextEditor(props: { @@ -50,7 +50,11 @@ export function useTextEditor(props: { }), CharacterCount.configure({ limit: max }), Image, - Link.configure({ HTMLAttributes: { class: clsx('no-underline !text-indigo-700', linkClass)}}), + Link.configure({ + HTMLAttributes: { + class: clsx('no-underline !text-indigo-700', linkClass), + }, + }), ], content: defaultValue, }) diff --git a/web/pages/create.tsx b/web/pages/create.tsx index 7040dff0..8d4c3662 100644 --- a/web/pages/create.tsx +++ b/web/pages/create.tsx @@ -27,6 +27,7 @@ import { track } from 'web/lib/service/analytics' import { GroupSelector } from 'web/components/groups/group-selector' import { User } from 'common/user' import { TextEditor, useTextEditor } from 'web/components/editor' +import { Checkbox } from 'web/components/checkbox' type NewQuestionParams = { groupId?: string @@ -294,15 +295,13 @@ export function NewContract(props: { {!(min !== undefined && min < 0) && ( - - Log scale{' '} - setIsLogScale(!isLogScale)} - disabled={isSubmitting} - /> - + setIsLogScale(!isLogScale)} + disabled={isSubmitting} + /> )} {min !== undefined && max !== undefined && min >= max && (