dev #407

Merged
ysCha merged 4 commits from dev into dev-deploy 2025-10-30 16:40:07 +09:00
Showing only changes of commit a428cc31e8 - Show all commits

View File

@ -12,7 +12,7 @@ const UP_DOWN_TYPE = {
export default function Updown({ UP_DOWN_REF }) {
const { getMessage } = useMessage()
const [type, setType] = useState(UP_DOWN_TYPE.UP)
const [filledInput, setFilledInput] = useState('')
const [filledInput, setFilledInput] = useState('100')
const currentObject = useRecoilValue(currentObjectState)
const handleFocus = () => {
if (currentObject === null) {
@ -71,7 +71,6 @@ export default function Updown({ UP_DOWN_REF }) {
<input
type="text"
className="input-origin block"
defaultValue={100}
ref={UP_DOWN_REF.FILLED_INPUT_REF}
value={filledInput}
onFocus={handleFocus}