mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
refactor: show cuesheet as long as we have data
This commit is contained in:
committed by
Carlos Valente
parent
1061ed2a0e
commit
fb38d82855
@@ -25,7 +25,7 @@ import styles from './CuesheetPage.module.scss';
|
||||
|
||||
export default function CuesheetPage() {
|
||||
// TODO: can we use the normalised rundown for the table?
|
||||
const { data: flatRundown, status: rundownStatus } = useFlatRundown();
|
||||
const { data: flatRundown } = useFlatRundown();
|
||||
const { data: customFields } = useCustomFields();
|
||||
const [searchParams, setSearchParams] = useSearchParams();
|
||||
const { isOpen: isMenuOpen, onOpen, onClose } = useDisclosure();
|
||||
@@ -118,7 +118,7 @@ export default function CuesheetPage() {
|
||||
[onEventEditorClose, onEventEditorOpen],
|
||||
);
|
||||
|
||||
if (!customFields || !flatRundown || rundownStatus !== 'success') {
|
||||
if (!customFields || !flatRundown) {
|
||||
return <EmptyPage text='Loading...' />;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user