Skip to content

Commit

Permalink
change logo
Browse files Browse the repository at this point in the history
  • Loading branch information
hongfaqiu committed Nov 1, 2024
1 parent 4dab0d9 commit 6d42f4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/logo.svg" />
<title>Cesium Wind Layer Demo</title>
</head>
<style>
Expand Down
1 change: 1 addition & 0 deletions example/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion example/src/components/ControlPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export const ControlPanel: React.FC<ControlPanelProps> = ({
'Height of particles above the ground in meters.'
)}
>
<NumberInput min={-1000} max={10000} step={100} />
<NumberInput min={-1000} max={10000} step={1} />
</CompactFormItem>

<CompactFormItem
Expand Down
2 changes: 1 addition & 1 deletion example/src/components/NumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const NumberInput: React.FC<NumberInputProps> = ({
min,
max,
step = 1,
precision = 0,
precision,
}) => {
const handleInputNumberChange = (val: number | null) => {
if (val !== null && onChange) {
Expand Down

0 comments on commit 6d42f4b

Please sign in to comment.