From bd948ae9badbc668e2829d860ebe92d67cdf0469 Mon Sep 17 00:00:00 2001 From: alex-arc Date: Sat, 8 Aug 2026 14:29:58 +0200 Subject: [PATCH] refactor: revert to locak icon --- .../rundown/entry-editor/composite/TargetDurationInput.tsx | 4 ++-- .../src/features/rundown/rundown-group/RundownGroup.tsx | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/client/src/features/rundown/entry-editor/composite/TargetDurationInput.tsx b/apps/client/src/features/rundown/entry-editor/composite/TargetDurationInput.tsx index cfb4b243b..b7709606b 100644 --- a/apps/client/src/features/rundown/entry-editor/composite/TargetDurationInput.tsx +++ b/apps/client/src/features/rundown/entry-editor/composite/TargetDurationInput.tsx @@ -1,5 +1,5 @@ import { MaybeNumber } from 'ontime-types'; -import { TbTargetArrow, TbTarget } from 'react-icons/tb'; +import { IoLockClosed, IoLockOpenOutline } from 'react-icons/io5'; import IconButton from '../../../../common/components/buttons/IconButton'; import * as Editor from '../../../../common/components/editor-utils/EditorUtils'; @@ -37,7 +37,7 @@ export default function TargetDurationInput({ duration, targetDuration, submitHa data-testid='lock__duration' render={} > - {isLocked ? : } + {isLocked ? : } diff --git a/apps/client/src/features/rundown/rundown-group/RundownGroup.tsx b/apps/client/src/features/rundown/rundown-group/RundownGroup.tsx index 0f424f343..336d1a16c 100644 --- a/apps/client/src/features/rundown/rundown-group/RundownGroup.tsx +++ b/apps/client/src/features/rundown/rundown-group/RundownGroup.tsx @@ -10,8 +10,9 @@ import { IoFolderOpenOutline, IoReorderTwo, IoTrash, + IoLockClosed, } from 'react-icons/io5'; -import { TbTargetArrow, TbClockPin } from 'react-icons/tb'; +import { TbClockPin } from 'react-icons/tb'; import IconButton from '../../../common/components/buttons/IconButton'; import Tag from '../../../common/components/tag/Tag'; @@ -192,7 +193,7 @@ export default function RundownGroup({ data, hasCursor, collapsed, onCollapse }:
Duration - {data.targetDuration !== null && } + {data.targetDuration !== null && }
{formatDuration(data.duration)}