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>
|
||||
<Label htmlFor="versionName">앱 버전</Label>
|
||||
<Input
|
||||
id="versionName"
|
||||
value={editableVersionName}
|
||||
onChange={(e) => setEditableVersionName(e.target.value)}
|
||||
placeholder="앱 버전 (예: 1.0.0)"
|
||||
/>
|
||||
<div className="neuro-flat p-3 rounded-md border border-gray-200 bg-white text-base mt-1">
|
||||
{editableVersionName}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<Label htmlFor="buildNumber">빌드 번호</Label>
|
||||
<Input
|
||||
id="buildNumber"
|
||||
value={editableBuildNumber}
|
||||
onChange={(e) => setEditableBuildNumber(e.target.value)}
|
||||
placeholder="빌드 번호 (예: 1)"
|
||||
type="number"
|
||||
/>
|
||||
<div className="neuro-flat p-3 rounded-md border border-gray-200 bg-white text-base mt-1">
|
||||
{editableBuildNumber}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user