mirror of
https://github.com/nextcloud/server.git
synced 2025-03-16 17:24:10 +00:00
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>
This commit is contained in:
parent
bd4de5208d
commit
fa0862c656
1 changed files with 1 additions and 1 deletions
|
@ -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')); ?>">
|
||||
|
|
Loading…
Reference in a new issue