change icon processed on history page
This commit is contained in:
parent
83ae2aae9a
commit
6eec49981f
|
@ -5,7 +5,7 @@ import supabase from "../utils/supabase";
|
||||||
import { getDates } from "../utils/dates";
|
import { getDates } from "../utils/dates";
|
||||||
import TrashIcon from "../icons/TrashIcon";
|
import TrashIcon from "../icons/TrashIcon";
|
||||||
import { KondisiTapai } from "../types/KondisiTapai";
|
import { KondisiTapai } from "../types/KondisiTapai";
|
||||||
import RefreshIcon from "../icons/RefreshIcon";
|
import ClockIcon from "../icons/ClockIcon";
|
||||||
|
|
||||||
export default function () {
|
export default function () {
|
||||||
const [items, setItems] = createSignal<Histori[]>([]);
|
const [items, setItems] = createSignal<Histori[]>([]);
|
||||||
|
@ -49,8 +49,8 @@ export default function () {
|
||||||
<p class="text-sm">
|
<p class="text-sm">
|
||||||
Menampilkan hasil fermentasi yang telah dilakukan.
|
Menampilkan hasil fermentasi yang telah dilakukan.
|
||||||
</p>
|
</p>
|
||||||
<div class="flex space-x-3 text-sm items-center mt-5">
|
<div class="flex text-sm items-center mt-5">
|
||||||
<RefreshIcon class="text-blue-500 w-6 h-6 animate-spin" />{" "}
|
<ClockIcon class="text-blue-500 w-6 h-6 mr-1" />
|
||||||
<div>: Proses sedang berlangsung</div>
|
<div>: Proses sedang berlangsung</div>
|
||||||
</div>
|
</div>
|
||||||
<Table
|
<Table
|
||||||
|
@ -75,7 +75,7 @@ export default function () {
|
||||||
</span>,
|
</span>,
|
||||||
!!dataPengujianAwal() &&
|
!!dataPengujianAwal() &&
|
||||||
dataPengujianAwal()!.created_time <= item.waktu_akhir ? (
|
dataPengujianAwal()!.created_time <= item.waktu_akhir ? (
|
||||||
<RefreshIcon class="text-blue-500 w-6 h-6 animate-spin" />
|
<ClockIcon class="text-blue-500 w-6 h-6" />
|
||||||
) : (
|
) : (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
Loading…
Reference in New Issue