This commit is contained in:
@@ -91,7 +91,7 @@
|
|||||||
|
|
||||||
options.push({
|
options.push({
|
||||||
id: "custom",
|
id: "custom",
|
||||||
label: "Specific Dates",
|
label: "Specific Date",
|
||||||
value: null,
|
value: null,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import stuffLogClient from "../clients/stufflog";
|
import stuffLogClient from "../clients/stufflog";
|
||||||
import Checkbox from "../components/Checkbox.svelte";
|
import Checkbox from "../components/Checkbox.svelte";
|
||||||
|
import DeadlineSelect from "../components/DeadlineSelect.svelte";
|
||||||
import IconSelect from "../components/IconSelect.svelte";
|
import IconSelect from "../components/IconSelect.svelte";
|
||||||
import Modal from "../components/Modal.svelte";
|
import Modal from "../components/Modal.svelte";
|
||||||
import StatusTagSelect from "../components/StatusTagSelect.svelte";
|
import StatusTagSelect from "../components/StatusTagSelect.svelte";
|
||||||
@@ -8,7 +9,6 @@
|
|||||||
import type { ProjectResult } from "../models/project";
|
import type { ProjectResult } from "../models/project";
|
||||||
import markStale from "../stores/markStale";
|
import markStale from "../stores/markStale";
|
||||||
import modalStore from "../stores/modal";
|
import modalStore from "../stores/modal";
|
||||||
import projectStore, { fpProjectStore } from "../stores/project";
|
|
||||||
import { formatFormTime } from "../utils/time";
|
import { formatFormTime } from "../utils/time";
|
||||||
|
|
||||||
export let deletion = false;
|
export let deletion = false;
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
<label for="itemId">Icon</label>
|
<label for="itemId">Icon</label>
|
||||||
<IconSelect disabled={deletion} bind:value={icon} />
|
<IconSelect disabled={deletion} bind:value={icon} />
|
||||||
<label for="endTime">Deadline (Optional)</label>
|
<label for="endTime">Deadline (Optional)</label>
|
||||||
<input disabled={deletion} name="endTime" type="datetime-local" bind:value={endTime} />
|
<DeadlineSelect disabled={deletion} bind:value={endTime} />
|
||||||
<label for="statusTag">Status</label>
|
<label for="statusTag">Status</label>
|
||||||
<StatusTagSelect disabled={deletion} bind:value={statusTag} />
|
<StatusTagSelect disabled={deletion} bind:value={statusTag} />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user