Skip to content

Commit

Permalink
fix(web): set updateClockOnLoad default value as true (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyshx committed Jun 6, 2023
1 parent 342a036 commit b61d6e2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -61,7 +61,7 @@ export default function Resource({
return [
type ?? (data?.type as ResourceAppearance["type"]),
url ?? data?.url,
!!data?.time?.updateClockOnLoad,
data?.time?.updateClockOnLoad ?? true,
];
}, [property, layer]);
const { viewer } = useCesium();
Expand Down

0 comments on commit b61d6e2

Please sign in to comment.