mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
Collapsed "Project Name" + "Expiration Time" to same line
- Collapsed "Project Name" + "Expiration Time" to same line in upload interface
This commit is contained in:
@@ -726,22 +726,27 @@ const FileUpload: React.FC = () => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<InputField
|
||||
icon={Folder}
|
||||
label="Project Name"
|
||||
required
|
||||
value={project}
|
||||
onChange={(e) => setProject(e.target.value)}
|
||||
placeholder="Enter project name (e.g. ASSESS-123)"
|
||||
/>
|
||||
|
||||
<InputField
|
||||
icon={Clock}
|
||||
label="Expiration Time"
|
||||
value={expirationTime}
|
||||
tooltip="Date when the data expires and Nemesis will delete it (configurable on the Settings page)."
|
||||
readOnly
|
||||
/>
|
||||
<div className="flex gap-4">
|
||||
<div className="flex-1">
|
||||
<InputField
|
||||
icon={Folder}
|
||||
label="Project Name"
|
||||
required
|
||||
value={project}
|
||||
onChange={(e) => setProject(e.target.value)}
|
||||
placeholder="Enter project name (e.g. ASSESS-123)"
|
||||
/>
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<InputField
|
||||
icon={Clock}
|
||||
label="Expiration Time"
|
||||
value={expirationTime}
|
||||
tooltip="Date when the data expires and Nemesis will delete it (configurable on the Settings page)."
|
||||
readOnly
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
|
||||
Reference in New Issue
Block a user