Various layout fixes for app install dialog

This commit is contained in:
Johannes Zellner
2025-03-02 17:22:46 +01:00
parent 6907c6dfe4
commit e02d2c8af2
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ for (const p in props.udpPorts) {
<template>
<div v-for="ports in [ tcpPorts, udpPorts ]" :key="ports">
<FormGroup v-for="(port, key) in ports" :key="key">
<FormGroup v-for="(port, key) in ports" :key="key" style="margin-top: 10px;">
<Checkbox :label="port.title" v-model="port.enabled" />
<small>{{ port.description + '.' + (port.portCount >=1 ? (port.portCount + ' ports. ') : '') }}</small>
<small v-show="port.readOnly">{{ $t('appstore.installDialog.portReadOnly') }}</small>