Skip to content

Commit

Permalink
Swap "Restart notebook" and "Share" buttons in top nav
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Oct 27, 2023
1 parent e97616f commit effe84d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/components/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1510,9 +1510,6 @@ patch: ${JSON.stringify(
/>`)
}
<div class="flex_grow_2"></div>
<button class="toggle_export" title="Export..." onClick=${() => {
this.setState({ export_menu_open: !export_menu_open })
}}><span></span></button>
<div id="process_status">${
status.binder && status.loading
? "Loading binder..."
Expand All @@ -1532,6 +1529,9 @@ patch: ${JSON.stringify(
? html`${restart_button("Run notebook code", true)}`
: null
}</div>
<button class="toggle_export" title="Export..." onClick=${() => {
this.setState({ export_menu_open: !export_menu_open })
}}><span></span></button>
</nav>
</header>
Expand Down

0 comments on commit effe84d

Please sign in to comment.