Change AppVersionInfo to display text
Replaced input fields with static text for displaying app version information in the AppVersionInfo component.
This commit is contained in:
@@ -118,23 +118,16 @@ const AppVersionInfo: React.FC<AppVersionInfoProps> = ({
|
|||||||
<div className="space-y-3">
|
<div className="space-y-3">
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="versionName">앱 버전</Label>
|
<Label htmlFor="versionName">앱 버전</Label>
|
||||||
<Input
|
<div className="neuro-flat p-3 rounded-md border border-gray-200 bg-white text-base mt-1">
|
||||||
id="versionName"
|
{editableVersionName}
|
||||||
value={editableVersionName}
|
</div>
|
||||||
onChange={(e) => setEditableVersionName(e.target.value)}
|
|
||||||
placeholder="앱 버전 (예: 1.0.0)"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="buildNumber">빌드 번호</Label>
|
<Label htmlFor="buildNumber">빌드 번호</Label>
|
||||||
<Input
|
<div className="neuro-flat p-3 rounded-md border border-gray-200 bg-white text-base mt-1">
|
||||||
id="buildNumber"
|
{editableBuildNumber}
|
||||||
value={editableBuildNumber}
|
</div>
|
||||||
onChange={(e) => setEditableBuildNumber(e.target.value)}
|
|
||||||
placeholder="빌드 번호 (예: 1)"
|
|
||||||
type="number"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user