diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2024-08-21 21:26:23 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-09-04 09:46:17 +0200 |
commit | fa0862c656d4fbe381a418015a16b5dc2e85408c (patch) | |
tree | 7ddb13a5c005f665a3a9b300881e40ce74105ab0 /apps/files_external | |
parent | bd4de5208d6e8fb052f9b36f0a3b2f2d66c7c8cd (diff) | |
download | nextcloud-server-fa0862c656d4fbe381a418015a16b5dc2e85408c.tar.gz nextcloud-server-fa0862c656d4fbe381a418015a16b5dc2e85408c.zip |
fix: Hide status tooltip in row to add a new mount point
The row to add a new mount point is cloned when a new mountpoint is
added, so it is expected that it includes a status span. However, it
should not be displayed in that row, only in the cloned row when its
status is updated.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 54407836d63..c4d14ecb2b4 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -146,7 +146,7 @@ function writeParameterInput($parameter, $options, $classes = []) { <?php endif; ?> > <td class="status"> - <span data-placement="right" title="<?php p($l->t('Click to recheck the configuration')); ?>"></span> + <span data-placement="right" title="<?php p($l->t('Click to recheck the configuration')); ?>" style="display: none;"></span> </td> <td class="mountPoint"><input type="text" name="mountPoint" value="" placeholder="<?php p($l->t('Folder name')); ?>"> |