diff --git a/qt-mobile/qml/DiveList.qml b/qt-mobile/qml/DiveList.qml index 7b300ed24..12fc99182 100644 --- a/qt-mobile/qml/DiveList.qml +++ b/qt-mobile/qml/DiveList.qml @@ -112,7 +112,7 @@ MobileComponents.Page { // the :: and show the trip location var shownText var endsWithDoubleDash = /::--$/; - if (endsWithDoubleDash.test(section)) { + if (endsWithDoubleDash.test(section) || section === "--") { shownText = "" } else { shownText = section.replace(/.*::/, "")