aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/LineEdit.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index f5e8a478..9afb5ebc 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -78,9 +78,9 @@ Item {
onTextUpdated: {
// check to remove placeholder text when there is content
if(item.isEmpty()){
- placeholderLabel.visible = true
+ placeholderLabel.visible = true;
} else {
- placeholderLabel.visible = false
+ placeholderLabel.visible = false;
}
}