Avoid overflowing when textarea does not fit but also don't break lines

This commit is contained in:
Johannes Zellner
2025-11-06 16:50:45 +01:00
parent 21191bdc50
commit fa886c71b8
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -344,8 +344,7 @@ onMounted(async () =>{
<FormGroup v-if="volumeDialogData.mountType === 'sshfs'">
<label for="volumePrivateKey">{{ $t('volumes.addVolumeDialog.privateKey') }}</label>
<!-- private key has 7 lines of 70 chars -->
<MaskedInput multiline rows="7" cols="72" v-model="volumeDialogData.privateKey" id="volumePrivateKey" />
<MaskedInput multiline rows="7" style="white-space: nowrap;" v-model="volumeDialogData.privateKey" id="volumePrivateKey" />
</FormGroup>
</fieldset>