mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 05:29:20 +03:00
Fix selectbox issue with domain connection type #689
This commit is contained in:
parent
7878b542a5
commit
2d832ff5ea
5 changed files with 15 additions and 15 deletions
|
|
@ -73,7 +73,7 @@ ko.bindingHandlers['options'] = {
|
|||
if (allBindings['has']('optionsCaption')) {
|
||||
captionValue = ko.utils.unwrapObservable(allBindings.get('optionsCaption'));
|
||||
// If caption value is null or undefined, don't show a caption
|
||||
if (captionValue !== null && captionValue !== undefined) {
|
||||
if (captionValue != null) {
|
||||
filteredArray.unshift(captionPlaceholder);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue