diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-07-24 18:24:36 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-07-24 18:24:36 +0800 |
commit | 5a3e12b39cd5b842d9f9788b17558b6c9c4c0336 (patch) | |
tree | 56d51d0603fcb0cb62a571341120b943169005ba /contents/ui | |
parent | 64c287781d398acd43ebf666acd33bb17f4ba018 (diff) |
Remove semicolons
I wrote too much C++ in the past few months
Diffstat (limited to 'contents/ui')
-rw-r--r-- | contents/ui/main.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contents/ui/main.qml b/contents/ui/main.qml index f3af512..b49996d 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -100,8 +100,8 @@ Item { } // figure out where we insert it into list - let idx = 0; - let endIdx = 0; // actually past the end + let idx = 0 + let endIdx = 0 // actually past the end if (info.important) { idx = announcementIndices.important endIdx = announcementIndices.normal @@ -148,8 +148,8 @@ Item { finished: plasmoid.configuration.finishedAssignments.includes(assignment.id.toString()), } - let idx = 0; - let endIdx = 0; + let idx = 0 + let endIdx = 0 if (info.important) { idx = assignmentIndices.important endIdx = assignmentIndices.normal |