Use full width for domain inputs in app install dialog

This commit is contained in:
Johannes Zellner
2025-03-22 12:03:27 +01:00
parent 1db275707b
commit b3e8b41e0e

View File

@@ -192,7 +192,7 @@ defineExpose({
<FormGroup :class="{ 'has-error': formError.location }">
<label for="location">{{ $t('appstore.installDialog.location') }}</label>
<InputGroup>
<TextInput id="location" ref="locationInput" v-model="location" />
<TextInput id="location" ref="locationInput" v-model="location" style="flex-grow: 1"/>
<Dropdown v-model="domain" :options="domains" option-label="domain" />
</InputGroup>
<div class="text-danger" v-if="formError.location">{{ formError.location }}</div>
@@ -204,7 +204,7 @@ defineExpose({
<label :for="'secondaryDomainInput' + key">{{ port.title }}</label>
<small>{{ port.description }}</small>
<InputGroup>
<TextInput :id="'secondaryDomainInput' + key" v-model="port.value" :placeholder="$t('appstore.installDialog.locationPlaceholder')"/>
<TextInput :id="'secondaryDomainInput' + key" v-model="port.value" :placeholder="$t('appstore.installDialog.locationPlaceholder')" style="flex-grow: 1"/>
<Dropdown v-model="port.domain" :options="domains" option-label="domain" option-key="domain" />
</InputGroup>
</FormGroup>