Skip to content
This repository was archived by the owner on Jul 13, 2025. It is now read-only.

Commit 5058c22

Browse files
committed
Fix a rare error in the instance view
1 parent e75133f commit 5058c22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/InstanceView/TaggedInstanceProvider.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ function TaggedInstanceProvider:updateState(tagName)
6666
if a.instance.Name < b.instance.Name then
6767
return true
6868
end
69-
if b.instance.Name < b.instance.Name then
69+
if b.instance.Name < a.instance.Name then
7070
return false
7171
end
7272

7373
if a.instance.ClassName < b.instance.ClassName then
7474
return true
7575
end
76-
if b.instance.ClassName < b.instance.ClassName then
76+
if b.instance.ClassName < a.instance.ClassName then
7777
return false
7878
end
7979

0 commit comments

Comments
 (0)