Skip to content

Commit 6d81b29

Browse files
danxuliunextcloud-command
authored andcommitted
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> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent d742e0d commit 6d81b29

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/files_external/css/settings.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_external/css/settings.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_external/templates/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function writeParameterInput($parameter, $options, $classes = []) {
140140
<?php endif; ?>
141141
>
142142
<td class="status">
143-
<span data-placement="right" title="<?php p($l->t('Click to recheck the configuration')); ?>"></span>
143+
<span data-placement="right" title="<?php p($l->t('Click to recheck the configuration')); ?>" style="display: none;"></span>
144144
</td>
145145
<td class="mountPoint"><input type="text" name="mountPoint" value=""
146146
placeholder="<?php p($l->t('Folder name')); ?>">

0 commit comments

Comments
 (0)