Commit f295707e authored by Filip Šenk's avatar Filip Šenk
Browse files

Fix: linted

parent 7f5143be
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ export const INFORMATION_INJECT_FORM: Form = {
  name: {
    label: 'Display Name',
    tooltip: '',
    optional: true
    optional: true,
  },
  content: {
    label: 'Content',
@@ -110,7 +110,7 @@ export const QUESTIONNAIRE_FORM: Form = {
  title: {
    label: 'Display Name',
    tooltip: '',
    optional: true
    optional: true,
  },
  content: {
    label: 'Content',
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ export const MILESTONE_FORM: Form = {
  name: {
    label: 'Display name',
    tooltip: '',
    optional: true
    optional: true,
  },
  description: {
    label: 'What is this milestone about?',
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ export const TOOL_FORM: Form = {
  name: {
    label: 'Display Name',
    tooltip: '',
    optional: true
    optional: true,
  },
  category: {
    label: 'Category',
+3 −3
Original line number Diff line number Diff line
@@ -26,10 +26,10 @@ export const MilestoneForm: FC<MilestoneFormProps> = ({ state }) => (
      set={({ set }) => set}
    >
      {({ display_name, name }, setValue) => (
        <TooltipLabel label={MILESTONE_FORM.name ??}>
        <TooltipLabel label={MILESTONE_FORM.name}>
          <InputGroup
            placeholder={`Default: ${name}`}
            value={display_name ?? ""}
            value={display_name ?? ''}
            onChange={e => setValue('display_name', e.target.value)}
          />
          <NameTooltip idName={name} />
+1 −1
Original line number Diff line number Diff line
@@ -45,5 +45,5 @@ export const Keys = {
  getEmailThreadArchivedKey: (id: string) => `email-thread-archived:${id}`,
  getActionLogClosedKey: (id: string) => `action-log-closed:${id}`,
  USERCOLUMNS: 'user-columns',
  EDITOR_DRAWER_WIDTH: "editor-drawer-width"
  EDITOR_DRAWER_WIDTH: 'editor-drawer-width',
}