Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3295670
D3339.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D3339.diff
View Options
diff --git a/web/sidebar/app-switcher.react.js b/web/sidebar/app-switcher.react.js
new file mode 100644
--- /dev/null
+++ b/web/sidebar/app-switcher.react.js
@@ -0,0 +1,11 @@
+// @flow
+
+import * as React from 'react';
+
+import NavigationPanel from './navigation-panel.react';
+
+function AppSwitcher(): React.Node {
+ return <NavigationPanel />;
+}
+
+export default AppSwitcher;
diff --git a/web/sidebar/left-layout-aside.react.js b/web/sidebar/left-layout-aside.react.js
--- a/web/sidebar/left-layout-aside.react.js
+++ b/web/sidebar/left-layout-aside.react.js
@@ -2,15 +2,15 @@
import * as React from 'react';
+import AppSwitcher from './app-switcher.react';
import CommunityPicker from './community-picker.react';
import css from './left-layout-aside.css';
-import NavigationPanel from './navigation-panel.react';
function LeftLayoutAside(): React.Node {
return (
<aside className={css.container}>
<CommunityPicker />
- <NavigationPanel />
+ <AppSwitcher />
</aside>
);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 10:37 PM (20 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2532143
Default Alt Text
D3339.diff (1 KB)
Attached To
Mode
D3339: [web] Reintroduce AppSwitcher
Attached
Detach File
Event Timeline
Log In to Comment