-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: make side bar notification behave correctly --------- Co-authored-by: Awais Ansari <[email protected]>
- Loading branch information
1 parent
fe773d1
commit bce25c4
Showing
7 changed files
with
19 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import * as notifications from './notifications'; | ||
import * as discusssions from './discussions'; | ||
import * as discussions from './discussions'; | ||
|
||
export const SIDEBARS = { | ||
[notifications.ID]: { | ||
ID: notifications.ID, | ||
Sidebar: notifications.Sidebar, | ||
Trigger: notifications.Trigger, | ||
}, | ||
[discusssions.ID]: { | ||
ID: discusssions.ID, | ||
Sidebar: discusssions.Sidebar, | ||
Trigger: discusssions.Trigger, | ||
[discussions.ID]: { | ||
ID: discussions.ID, | ||
Sidebar: discussions.Sidebar, | ||
Trigger: discussions.Trigger, | ||
}, | ||
}; | ||
|
||
export const SIDEBAR_ORDER = [ | ||
discusssions.ID, | ||
discussions.ID, | ||
notifications.ID, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters