We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bd402a + 237aee9 commit 61904f2Copy full SHA for 61904f2
src/app/_components/ScriptDetailModal.tsx
@@ -165,6 +165,20 @@ export function ScriptDetailModal({
165
{script.privileged && <PrivilegedBadge />}
166
</div>
167
168
+
169
+ {/* Interface Port*/}
170
+ {script.interface_port && (
171
+ <div className="ml-3 sm:ml-4 flex-shrink-0">
172
+ <div className="bg-primary/10 border border-primary/30 rounded-lg px-3 py-1.5 sm:px-4 sm:py-2">
173
+ <span className="text-xs sm:text-sm font-medium text-muted-foreground mr-2">
174
+ Port:
175
+ </span>
176
+ <span className="text-sm sm:text-base font-semibold text-foreground font-mono">
177
+ {script.interface_port}
178
179
+ </div>
180
181
+ )}
182
183
184
{/* Close Button */}
0 commit comments