Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nexus
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
nexus
Commits
d84663a4
Commit
d84663a4
authored
1 year ago
by
Destiny Kuehn
Committed by
Maeva Pourpoint
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
fix sorting bug
parent
97c6d13b
No related branches found
No related tags found
1 merge request
!27
Fix to issue 34: Allow user to copy datalogger type, gain and sensor type to other stations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nexus/StationSelectDialog.py
+1
-1
1 addition, 1 deletion
nexus/StationSelectDialog.py
with
1 addition
and
1 deletion
nexus/StationSelectDialog.py
+
1
−
1
View file @
d84663a4
...
@@ -39,7 +39,7 @@ class StationSelectDialog(*load_ui('StationSelectDialog.ui')):
...
@@ -39,7 +39,7 @@ class StationSelectDialog(*load_ui('StationSelectDialog.ui')):
rows
=
set
(
item
.
row
()
for
item
in
self
.
tableWidget
.
selectedItems
())
rows
=
set
(
item
.
row
()
for
item
in
self
.
tableWidget
.
selectedItems
())
self
.
selected_stations
=
[]
self
.
selected_stations
=
[]
for
row
in
rows
:
for
row
in
rows
:
self
.
selected_stations
.
append
(
self
.
stat
ions
[
row
])
self
.
selected_stations
.
append
(
self
.
stat
_map
[
row
])
super
().
accept
()
super
().
accept
()
def
sort_table
(
self
,
column
):
def
sort_table
(
self
,
column
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment