Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxeOfMen <AxeOfMen@users.noreply.github.com>2022-04-09 01:55:51 +0300
committerAxeOfMen <AxeOfMen@users.noreply.github.com>2022-04-09 01:55:51 +0300
commitd820b92157c0bdcdeeab780406b63c310b4cc7e5 (patch)
tree8d0c8e9d44169eb5172def232642333c787e4643
parent2f3b0e83a0c3e5dbdd8ccba0a08e3623d64ca231 (diff)
Issue #4608: Add additional condition to prevent empty dialog from displaying in Firefox when duplicating a Duplicati tab
-rwxr-xr-xDuplicati/Server/webroot/ngax/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Server/webroot/ngax/index.html b/Duplicati/Server/webroot/ngax/index.html
index 040957e69..42c588c28 100755
--- a/Duplicati/Server/webroot/ngax/index.html
+++ b/Duplicati/Server/webroot/ngax/index.html
@@ -283,9 +283,9 @@
<notification-area></notification-area>
<div ng-controller="DialogController">
- <div ng-show="state.CurrentItem != null" class="blocker" ng-click=""></div>
+ <div ng-show="state.CurrentItem != null && state.CurrentItem.title != null" class="blocker" ng-click=""></div>
- <div ng-show="state.CurrentItem != null" class="modal-dialog ng-cloak">
+ <div ng-show="state.CurrentItem != null && state.CurrentItem.title != null" class="modal-dialog ng-cloak">
<div class="info">
<div class="title">{{state.CurrentItem.title}}</div>
<div class="content" ng-show="state.CurrentItem.message || state.CurrentItem.enableTextarea">